All Questions
5 questions
1
vote
1
answer
264
views
How to automate word document from Json data using python
I have a JSON file. How can I create a word document from JSON data. Using templates, I can only fill in one variable. How do I create dynamic word template based on number of values inside JSON list? ...
0
votes
0
answers
143
views
Splitting word file using regex python
I am trying to split word files (.doc and .docx) into multiple word (.doc)or text (txt) files - whichever is easier to split into.
Each .doc or .docx file has at least one contract number, identified ...
-1
votes
1
answer
1k
views
combine multiple words documents into one document
I have multiple documents with following names: auto_1.docx, auto_2.docx, auto_3.docx in one folder(dir) and I was able to combine these with following codes.
from docxcompose.composer import Composer
...
-2
votes
1
answer
696
views
Copying specific content from one word doc to another
I'm trying to automate copying specific content from one word document(table) to other document(tables(s)), Please see below image to understand what I'm trying to do. Please suggest on how to make it ...
-1
votes
1
answer
295
views
Converting doc files to text files [closed]
I have a list of MS word doc files in a directory. The directory also contains sub folders. I'm trying to convert all the document files in the directory to text files. Is there any way that I can do ...