それぞれが特定のコンテンツを持つ単語ファイルはほとんどありません。docx
Pythonライブラリを使用しているときに、単語ファイルを 1 つのファイルに結合する方法を示す、または理解するのに役立つスニペットが必要です。
たとえば、pywin32 ライブラリでは次のようにしました。
rng = self.doc.Range(0, 0)
for d in data:
time.sleep(0.05)
docstart = d.wordDoc.Content.Start
self.word.Visible = True
docend = d.wordDoc.Content.End - 1
location = d.wordDoc.Range(docstart, docend).Copy()
rng.Paste()
rng.Collapse(0)
rng.InsertBreak(win32.constants.wdPageBreak)
docx
しかし、代わりにPythonライブラリを使用しながらそれを行う必要がありますwin32.client