Skip to content

Eric-Guo/python-docx

Repository files navigation

python-docx

python-docx is a Python library for reading, creating, and updating Microsoft Word 2007+ (.docx) files.

Installation

pip install python-docx 

Example

>>>fromdocximportDocument>>>document=Document() >>>document.add_paragraph("It was a dark and stormy night.") <docx.text.paragraph.Paragraphobjectat0x10f19e760>>>>document.save("dark-and-stormy.docx") >>>document=Document("dark-and-stormy.docx") >>>document.paragraphs[0].text'It was a dark and stormy night.'

More information is available in the python-docx documentation

About

Create and modify Word documents with Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python93.0%
  • Gherkin6.9%
  • Makefile0.1%