纳速健身
标题:
[python之word操作]通过python-docx给word文档中的指定位置添加表格和表格属性设置方法
[打印本页]
作者:
awagink
时间:
2021-1-10 19:07
标题:
[python之word操作]通过python-docx给word文档中的指定位置添加表格和表格属性设置方法
需求
1.读取一个已有的word文档。docx格式。
2.在该word文档中,通过一个给定的文字。找到该位置。在该位置的下方添加一个表格。例如在图中“BUG情况表”的下方插入一个表格
(, 下载次数: 1)
上传
点击文件名下载附件
3.表格内容如下。要求添加完该表格后,如果表格内容发生变更。还能再次通过该程序,修改表格里的数据。
(, 下载次数: 1)
上传
点击文件名下载附件
设计通过python-docx读取word文档。通过document.paragraphs定位指定文字的位置。通过xlwings读取excel的内容,存成list[list[]]。通过docx的add_table增加一个表格,并且更改表头颜色,合并表格等操作通过识别表头的第一行,判断是否是已经存在这个表格,来决定是否要删除原表格代码
# -*- coding: UTF-8 -*-
import sys
from copy import deepcopy
import xlwings
from docx import Document
from docx.oxml.ns import nsdecls
from docx.oxml import parse_xml
def copy_table_after(table, paragraph):
tbl, p = table._tbl, paragraph._p
new_tbl = deepcopy(tbl)
p.addnext(new_tbl)
def move_table_after(table, paragraph):
tbl, p = table._tbl, paragraph._p
p.addnext(tbl)
def get_excel_date(filename):
'''
获得excel里的所有内容,返回list
:param filename: excel路径
:return: list[list[]]
'''
app = xlwings.App(visible=False, add_book=True)
app.display_alerts = False
app.screen_updating = False
wb = app.books.open(filename)
sht = wb.sheets[0]
rng = sht.range('A1')
# 把excel里的数据读取成 年-月-日 时:分:秒的格式
my_date_handler = lambda year, month, day, hour, minute, second, **kwargs: "%04i-%02i-%02i %02i:%02i:%02i" % (
year, month, day, hour, minute, second)
# 取出所有内容,这里用ig这个变量,是为了庆祝I.G获得LOL S8赛季总冠军
ig = rng.current_region.options(index=False, numbers=int, empty='N/A', dates=my_date_handler)
result = ig.value
wb.close()
app.quit()
return result
def delete_table_with_title(document,expect_text):
allTables = document.tables
for activeTable in allTables:
if activeTable.cell(0, 0).paragraphs[0].text == expect_text:
print('删除成功')
activeTable._element.getparent().remove(activeTable._element)
def insert_table_after_text(file_name,excel_name,expect_text):
document = Document(file_name)
# 因为docx读出来的都是unicode类型的,所以我们要用unicode类型的进行查找
expect_text=expect_text.decode('utf-8')
delete_table_with_title(document,expect_text)
target = None
for paragraph in document.paragraphs:
paragraph_text = paragraph.text
if paragraph_text.endswith(expect_text):
target = paragraph
break
if target is not None:
records = get_excel_date(excel_name)
# 获得excel数据的栏数,初始化一个空的table
col = len(records[0])
table = document.add_table(rows=1, cols=col)
table.style = 'Table Grid'
# 给table加一个表头,并且合并第一栏
shading_elm_1 = parse_xml(r'<w:shd {} w:fill="D9E2F3"/>'.format(nsdecls('w')))
table.rows[0].cells[0]._tc.get_or_add_tcPr().append(shading_elm_1)
table.rows[0].cells[0].text=expect_text
table_row=table.rows[0]
first=table_row.cells[0]
end=table_row.cells[-1]
first.merge(end)
# 合并结束,开始把excel里的内容添加到table里
for tr_list in records:
row_cells = table.add_row().cells
index = 0
for td_list in tr_list:
row_cells[index].text = td_list
index = index + 1
# 把添加的table移动到指定的位置
move_table_after(table, target)
# 保存
document.save(file_name)
if __name__ == '__main__':
insert_table_after_text('demo2.docx', 'demo.xlsx',"BUG情况表")
复制代码
最终效果
(, 下载次数: 1)
上传
点击文件名下载附件
python-docx的表格属性设置方法
怕搞忘,记下来。
pydocx的表格设置:
1.字体设置
for i in range(len(tab.rows)):
tab.rows[i].height = Cm(2)
for j in range(len(tab.columns)):
tab.cell(i,j).width = Cm(4)
tab.cell(i,j).vertical_alignment = WD_ALIGN_VERTICAL.CENTER
for par in tab.cell(i,j).paragraphs:
print(par.text)
# par.paragraph_format.styles.font.size=Pt(12)
for run in par.runs:
run.font.size = Pt(12)
run.font.name = 'Times New Roman'
run.font.name = u'宋体'
run._element.rPr.rFonts.s
复制代码
直接用tab.style设置未生效,需要进cell的paragraph对run进行字体设置,可行。
2.段落段落设置
tab.style.paragraph_format.space_before = Pt(5)
tab.style.paragraph_format.space_after = Pt(5)
tab.style.paragraph_format.alignment = WD_ALIGN_PARAGRAPH.CENTER
tab.style.paragraph_format.line_spacing_rule = WD_LINE_SPACING.SINGLE
复制代码
3.表格内容居中
https://python-docx.readthedocs. ... ticalAlignment.html
for i in range(len(tab.rows)):
tab.rows[i].height = Cm(2)
for j in range(len(tab.columns)):
tab.cell(i,j).width = Cm(4)
tab.cell(i,j).vertical_alignment = WD_ALIGN_VERTICAL.CENTER
复制代码
需要在cell中对对起进行设置,有TOP,CENTER,BOTTOM三种,分别对应垂直方向的位置。
4.表格居中
tab.alignment=WD_ALIGN_PARAGRAPH.CENTER
直接对tab使用alignment,设置为居中;
5.表格高度、宽度
高度对ROWS进行设置
for i in range(len(tab.rows)):
tab.rows[i].height = Cm(2)
复制代码
宽度需要对进到cell对每个cell进行设置,因为每个列中如果有一个cell宽度较大,则按最大的,所以同列中要一样宽。
for i in range(len(tab.rows)):
tab.rows[i].height = Cm(2)
for j in range(len(tab.columns)):
tab.cell(i,j).width = Cm(4)
tab.cell(i,j).vertical_alignment = WD_ALIGN_VERTICAL.CENTER
复制代码
以上表格应该够了。
欢迎光临 纳速健身 (https://nasue.com/)
Powered by Discuz! X3.4