Skip to content Skip to sidebar Skip to footer

Possible To Insert Page In Word Document With Python-docx?

I just read through the documentation on python-docx. They mention several times that added content is created at the end of the document, but I didn't notice any way to alter this

Solution 1:

The short answer is the library doesn't support that just yet, although those features are high on the backlog so will be among the next to be implemented.

To get it done in the meantime you'll need to go down to the XML level with a "workaround" function. If you want to add this use case on this issue on GitHub I'll put together some workaround code you can use. https://github.com/python-openxml/python-docx/issues/27

Post a Comment for "Possible To Insert Page In Word Document With Python-docx?"