[Python] python-docx 編輯word文件

newHung發表於2014-07-21
[目的]
使用Python編輯Micorsoft Word 文件
[測試環境]
        OS: MS XP professional SP3 Win32
        Python:2.6.6
[準備]
        python-docx :下載地址
        [Python] word 文件 - zzq635 - 未名
 [安裝]
          

python setup.py install

 
[Python] word 文件 - zzq635 - 未名
[疑問]
        1.可能未裝lxml module造成的.請看一下我寫的 Window 安裝 lxml,或Google
[測試]
         指令碼程式碼

#coding=UTF-8 from docx import * def testmakedocument(): relationships = relationshiplist() document = newdocument() body = document.xpath('/w:document/w:body', namespaces=nsprefixes)[0] body.append(heading(u"檔案和資料夾服務介面", 1)) body.append(paragraph(u'請求格式')) request_rows = [ ['http method', 'url', u'說明'] , ['POST', 'http://www.163.com', 'B3'] ] body.append(table(request_rows)) body.append(paragraph(u'引數說明')) body.append(paragraph(u'相應內容')) body.append(paragraph(u'示例')) body.append(heading(u"上傳檔案", 1)) title = u'空間伺服器介面說明文件' subject = u'空間伺服器介面說明' creator = u'未名' keywords = ['alfresco', 'url', 'json'] coreprops = coreproperties(title=title, subject=subject, creator=creator, keywords=keywords) # Save our document savedocx(document, coreprops, appproperties(), contenttypes(), websettings(), wordrelationships(relationships), u'空間伺服器介面說明文件.docx') def testUnit(): testmakedocument() if __name__ == '__main__': testUnit()

         結果展示
         [Python] word 文件 - zzq635 - 未名
 [疑問]
         1.如果發現Import Error: no module named Image  請安裝 PIL.  推薦使用PIP 僅使用一句話 :  pip install pil 

相關文章