python read word document code example
Example 1: open word from python
import os
os.startfile('C:\\Path\\To\\file.docx')
Example 2: open word document python
from docx import Document
document = Document()
document.save('test.docx')
Example 3: read ms word with python
import textract
text = textract.process("path/to/file.extension")