Extract Multiple Tables in a Word File to an Excel File using Python
*Video Link:-
https://youtu.be/h0nEQS_XJf8
*Libraries used:- docx, pandas
*Details:- here we used docx to open a word document and identify all tables. Then we created a blank dataframe using pandas. Next we read all the rows of the tables one by one and put into dataframe. We used only one dataframe for all videos. We insert an empty row after each table so that we can see all tables separately.
Next by using DataFrame.to_excel() function we converted that DataFrame into an Excel file.
*Hashtags:-
#python #pandas #tutorial #docx #excel