Comment lire le fichier docx dans Python

import docx2txt
my_text = docx2txt.process("test.docx")
print(my_text)
Frantic Ferret