Package to read data from Apple Numbers spreadsheets
Project description
numbers-parser
numbers-parser
is a Python module for parsing Apple Numbers
.numbers
files. It supports Numbers files generated by Numbers version 10.3 and 11.0
(current as of May 2021).
It supports and is tested against Python versions from 3.5 onwards. It is not compatible with earlier versions of Python.
Currently supported features of Numbers files are:
- Multiple sheets per document
- Multiple tables per sheet
- Text, numeric, date, currency, duration, percentage cell types
Formulas have very limited support and rely wholly on Numbers saving values in cells as part of the saved document,
which is not always guaranteed. When a formula value is not present, the value *FORMULA*
is returned. Any formula
that results in a Numbers error returns a value *ERROR*
.
Installation
python3 -m pip install numbers-parser
Usage
Reading documents:
doc = Document("my-spreasdsheet.numbers")
sheets = doc.sheets()
tables = sheets[0].tables()
data = tables[0].data
Referring to sheets and tables
Both sheets and names can be accessed from lists of these objects using an integer index (list
syntax) and using the name
of the sheet/table (dict
syntax):
# list access method
sheet_1 = doc.sheets()[0]
print("Opened sheet", sheet_1.name)
# dict access method
table_1 = sheets["Table 1"]
print("Opened table", table_1.name)
Accessing data
Table
objects have a data
property which contains a nested list with an entry for each row of the table. Each row is
itself a list of the column values. Empty cells in Numbers are returned as None
values.
table_data = sheets["Table 1"].data
print("Cell A1 contains", data[0][0])
print("Cell C2 contains", data[2][1])
Cell references
In addition to extracting all data at once, individual cells can be referred to as methods
doc = Document("my-spreasdsheet.numbers")
sheets = doc.sheets()
tables = sheets["Sheet 1"].tables()
table = tables["Table 1"]
# row, column syntax
print("Cell A1 contains", table.cell(0, 0))
# Excel/Numbers-style cell references
print("Cell C2 contains", table.cell("C2"))
Numbers File Formats
Numbers uses a proprietary, compressed binary format to store its tables.
This format is comprised of a zip file containing images, as well as
Snappy-compressed
Protobuf .iwa
files containing
metadata, text, and all other definitions used in the spreadsheet.
Protobuf updates
As numbers-parser
includes private Protobuf definitions extracted from a copy of Numbers,
new versions of Numbers will inevitably create .numbers
files that cannot be read by numbers-parser
.
As new versions of Numbers are released, the following steps must be undertaken:
- Run proto-dump on the new copy of Numbers to dump
new Proto files.
- proto-dump assumes version 2.5.0 of Google Protobuf which may need changes to build on more modern OSes. The version linked here is maintained by the author and tested on recent macOS for both arm64 and x86_64 architectures.
- Any
.
characters in the Protobuf definitions must be changed to_
characters manually, or via therename_proto_files.py
script in theprotos
directory of this repo.
- Connect to a running copy of
Numbers
withlldb
(or any other debugger) and manually copy and reformat the results ofpo [TSPRegistry sharedRegistry]
intomapping.py
.- Versions of macOS >= 10.11 may protect Numbers from being attached to by a debugger - to attach, temporarily disable System IntegrityProtection to get this data.
- The
generate_mapping.py
script inprotos
should help turn the output from this step into a recreation ofmapping.py
Running make bootstrap
will perform all of these steps and generate the Python protos files as
well as mapping.py
. The makefile assumes that proto-dump
is in a repo parallel to this one, but the make variable PROTO_DUMP
can be overridden to pass
the path to a working version of proto-dump
.
Credits
numbers-parser
was built by Jon Connell but derived enormously
from prior work by Peter Sobot.
Both modules are derived from previous work
by Sean Patrick O'Brien.
Decoding the data structures inside Numbers files was helped greatly by previous work by Steven Lott.
License
All code in this repository is licensed under the MIT License.
Copyright 2021 Jon Connell
Copyright 2019-2020 Peter Sobot
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
and associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or
substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file numbers-parser-1.1.tar.gz
.
File metadata
- Download URL: numbers-parser-1.1.tar.gz
- Upload date:
- Size: 402.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9887d3e534cf1c27c06504d3d7120ced18b43ad0679b4c9c262956ab1d8571d3 |
|
MD5 | b6655a7b1677f6f0a430ef07888ed813 |
|
BLAKE2b-256 | ac34cdd65bb7f954581b49e37a624041f1f10e7fd71d52e2b9172b3fd4719914 |