openpyxl /

Filename Size Date modified Message
doc
et_xmfile [00f47b191939]
openpyxl
195 B
Remove from and import from coverage exclusion.
123 B
flow initialization: Added configuration file.
160 B
Harmonise EOL for ReST files.
278 B
Add Include to .hgignore
62 B
Create sub-repo for et_xmlfile
51 B
Merge upstream changes.
2.8 KB
Added tag 2.2.1 for changeset 836430cce62d
161 B
Install inlines all instructions.
1.3 KB
edit authors
1.7 KB
Harmonise EOL for ReST files.
157 B
Merge
1.1 KB
Merge
1.3 KB
Reorder code and rename functions.
327 B
Add marker for lxml 3.4 due to including tests from lxml
39 B
Merge
22 B
[wheels] added setup file for wheel package generation
2.5 KB
Update version and classifiers.
399 B
Get shippable to update dependencies
2.8 KB
Update docs.

openpyxl

openpyxl is a Python library to read/write Excel 2010 xlsx/xlsm/xltx/xltm files.

It was born from lack of existing library to read/write natively from Python the Office Open XML format.

All kudos to the PHPExcel team as openpyxl is based on PHPExcel http://www.phpexcel.net/

Mailing List

Official user list can be found on http://groups.google.com/group/openpyxl-users

Sample code:

from openpyxl import Workbook
wb = Workbook()

# grab the active worksheet
ws = wb.active

# Data can be directly to cells
ws['A1'] = 42

# Rows can also be appended
ws.append([1, 2, 3])

# Python types will automatically be converted
import datetime
ws['A2'] = datetime.datetime.now()

# Save the file
wb.save("sample.xlsx")

Official documentation

The documentation is at: http://openpyxl.readthedocs.org

  • installation methods
  • code examples
  • instructions for contributing

Release notes: http://openpyxl.readthedocs.org/en/latest/changes.html