我正在尝试将格式类似于电子表格的文本文件读取到列表中,然后将所述列中的参数用作合并字段,并使用 Python 将它们插入到模板 word 文档中。但是,我收到一个 TypeError 说:“尝试使用 win32api.ShellExecute() 打印文档时,'MailMerge' 类型的对象无法转换为 Unicode。我们通常手动执行此过程:将主文本文件排序为其他三个基于如果成员拖欠 15 天、25 天或 30 天,则使用 word 中的邮件合并来选择此文本文件作为收件人列表。我在示例中编写了此代码作为主程序之外的在组装之前让机械师工作。
在主程序中,我完成了排序功能。我还能够使用 document.merge() 并将信息插入到一个文档中。但是,要对一个文档中的多个页面执行此操作,我需要使用 MailMerge() 并将字典作为参数传递给它。我尝试使用带有相应行索引的 for 循环作为键的值,但由于该函数需要多个字典,因此它不起作用。然后我想出了使用 for 循环将每个成员及其信息插入到一个合并中,将其写入输出文件,打印该输出文件,并为每个成员执行此操作,直到完成。我试过使用 win32api.ShellExecute(0, "print", document, '/d:"%s"' % win32print.GetDefaultPrinter(), ".", 0) 但得到上述错误。
from __future__ import print_function
from mailmerge import MailMerge
import os
import win32api
import win32print
# Formatting the list so that the indices match the columns in the text
doc.
text_file = open('J:\cpletters15.txt')
courtesy_pay_list = text_file.readlines()
text_file.close()
delimeted_text = [line.split('\t') for line in courtest_pay_list]
# Opening the template
template = 'J:\courtesy_pay_15_test.docx'
document = MailMerge(template)
# This should merge and then print each member on their own letter.
for row in delimeted_text[1:]:
document.merge(
SHARE_NBR = row[2],
MEMBER_NBR = row[1],
CITY = row[11],
ADDRESS1 = row[9],
ADDRESS2 = row[10],
LAST_NAME = row[8],
STATE = row[12],
FIRST_NAME = row[7],
ZIP = row[13],
LETTER_DATE = row[4],
BALANCE = row[6]
)
document.write('J:\output.docx')
win32api.ShellExecute(
0, "print", document, '/d:"%s"' % win32print.GetDefaultPrinter(),
".", 0)
我期望此代码应在合并字段后打印每个文档,但我收到错误“'MailMerge' 类型的对象无法转换为 Unicode。”
(对不起,如果这太罗嗦了,我以前从未在这里发布过)。