Tiny python code for parsing data from Microsoft's Office Open XML Spreadsheet format
Project description
A small footprint xlsx reader that understands shared strings and can process excel dates.
Requirements
No external requirements. Supports Python versions 2.6+ and 3.2+.
Usage
book = Workbook('filename or filedescriptor') #Open xlsx file
for sheet in book:
print sheet.name
# for larger workbooks, use sheet.rowsIter() instead of
# sheet.rows().iteritems()
for row, cells in sheet.rows().iteritems(): # or sheet.cols()
print row # prints row number
for cell in cells:
print cell.id, cell.value, cell.formula
# or you can access the sheets by their name:
some_sheet = book['some sheet name']
...
Alternatives
To my knowledge there are other python alternatives:
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
py-xlsx-0.4.1.tar.gz
(7.6 kB
view details)
File details
Details for the file py-xlsx-0.4.1.tar.gz.
File metadata
- Download URL: py-xlsx-0.4.1.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d8fb5d02b9324b9b6b6cb3304fc9f9d543df18d1b2596c93ebfb26a7ed18ddc4
|
|
| MD5 |
bf597b04f65ef91c32f1cc5f8dcd022c
|
|
| BLAKE2b-256 |
fada0dbdb984cbc0f2f8721d3029de6ad64c11207938d835c7f5bf9e293390e0
|