I\'m trying to use python-docx module (pip install python-docx) but it seems to be very confusing as in github repo test sample they are using
python-docx
pip install python-docx
you can try this also
from docx import Document document = Document('demo.docx') for para in document.paragraphs: print(para.text)