I want to extract data from a word document with extension docx. This document contains a table. I want to fetch the data from each column and row of the table.
then I would like to process the data and insert it into an Excel file under their respective fields.
Can anyone please guide me how to do this in python.
I am using python3 on windows 7. (Might also want to run this code on windows sever 2003).
Any help will be much appreciated.
Thanks
Try something like:
ALT+F11 and F2 on a Word doc will show VBA objects… In Perl the above procedure is better documented.
Reading and writing to Excel is well supported by Python3’s packages xlrd3 and xlwt3