May-06-2018, 03:56 PM
May-06-2018, 04:30 PM
python-docx is library to work with docx files.
here is the documentation:
https://python-docx.readthedocs.io/en/latest/
here is the documentation:
https://python-docx.readthedocs.io/en/latest/
May-06-2018, 05:11 PM
(May-06-2018, 04:30 PM)buran Wrote: [ -> ]python-docx is library to work with docx files.I get the error 'No module named docx' when i use that library thing.
here is the documentation:
https://python-docx.readthedocs.io/en/latest/
May-06-2018, 06:04 PM
it's an external package - i.e. not part of Python standard library. You need to install it first from PyPI. There are installation instructions in the documentation link. Use pip:
pip install python-docx