1. 程式人生 > 其它 >python docx API 之 Document

python docx API 之 Document

Document API

參考:https://python-docx.readthedocs.io/en/latest/api/document.html

#1.建構函式,返回Document物件
document = Document(docx=None)
#2.新增標題
add_heading(text=u'', level=1)
#3.增加分頁符
add_page_break()
#4.增加段落,text中可以包括換行符,tab符等特殊符號
add_paragraph(text=u'', style=None)
#5.新增圖片
add_picture(image_path_or_stream, width=None, height=None)
#6.新增分節
add_section(start_type=2)
#7.新增表格
add_table(rows, cols, style=None)
#8.訪問核心屬性
#核心屬性包括:
#author, category, comments, content_status,
#created, identifier, keywords, language, last_modified_by,
#last_printed, modified, revision, subject, title,version
core_properties
#9.訪問行內屬性
inline_shapes
#10.返回段落列表
paragraphs
#11.儲存文件
save(path_or_stream)
#12.part
#The DocumentPart object of this document.
#13.訪問分節
sections
#14.訪問document-level settings
settings
#15.訪問樣式設定
styles
#16.訪問表格,返回列表
tables