Is there a way to save specific pages of one big docx into smaller docx files using python?
I've tried using python-docx but it doesn't seem to want to cooperate. Currently, I am saving it as a pdf, selecting the right pages for each different word document, and then saving them. Although, this is very slow and inefficient and it also loses some interactive elements such as checkboxes. There is also aspose-words but it has a huge watermark over it since it isn't free I guess
Is there an easier way to save specific pages into their own documents?
So to make it more concrete: Say I have a document called template.docx that has 5 pages. I want to save pages 1 and 5 into newdoc1.docx I want to save pages 2,3,4 into newdoc2.docx
Is there a way to do this nicely with some python libraries?