MS Office in Python
Create, read, and manipulate Microsoft Office files in Python.
The scripts provided in this project demonstrate how to:
- Write to a Word document.
- Write to an Excel workbook.
- Read from these Word and Excel files, and create a PowerPoint presentation to summarize their results.
Libraries Used
python-docx
: A Python library for creating and updating Microsoft Word (.docx) files.openpyxl
: A Python library to read/write Excel xlsx/xlsm/xltx/xltm files.python-pptx
: Python library for creating and updating PowerPoint (.pptx) files.
How to Run
You can run each script separately. Make sure to run the Word and Excel scripts before the PowerPoint script, as the latter relies on the output of the former two.
Further Reading
To understand more about how these libraries work and what you can do with them, check out their documentation: