openpyxl

Package — DocumentsPython 3.7+Intermediate

Read and write Excel .xlsx files with formulas and formatting

Quick Info

Documentation
Official Docs
Python Version
3.7+
Dependencies
et-xmlfile
Install
pip install openpyxl

Learn by Difficulty

Quick Example

python
import openpyxl
print(f"openpyxl loaded successfully")
print(f"Version: {getattr(openpyxl, '__version__', 'unknown')}")

openpyxl is a third-party package. Read and write Excel .xlsx files with formulas and formatting. Install with: pip install openpyxl

Try in Playground

Tags

packagedocumentsexcelxlsxfile-format

Related Items