[Python] python-docx
[安装]
python setup.py install
[疑问]
结果展示
#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()
[疑问]
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341