Reads and writes data stored in StarTable format; and stores table data inmemory as a Pandas data frame for easy manipulation.
Project description
pdtable
The pdtable
Python package offers interfaces to read, write, and manipulate StarTable data.
Documentation
The pdtable documentation is available at pdtable.readthedocs.io.
Examples
Demo: see the pdtable_demo notebook or, if you a Jupyter notebook doesn't do it for you, the notebook's paired script.
Installation
pdtable is available from pypi.org
pip install pdtable
and from conda-forge
conda install pdtable -c conda-forge
Data and metadata: storage and access
Table blocks are stored as TableDataFrame
objects, which inherit from pandas.DataFrame
but include additional, hidden metadata. This hidden metadata contains all the information from Table blocks that does not fit in a classic Pandas dataframe object: table destinations, column units, table origin, etc.
Data in TableDataFrame
objects can be accessed and manipulated using the Pandas API as it the object were a vanilla Pandas dataframe, with all the convenience that this entails.
The StarTable-specific metadata hidden in a TableDataFrame
's metadata can in principle be accessed directly; however a much more ergonomic interface is offered via a Table
facade object, which is a thin wrapper around TableDataFrame
. Table
also supports some limited data manipulation, though with the advantage of more easily supporting StarTable-specific metadata; for example, easily specifying column units when adding new columns.
I/O
Readers and writers are available for CSV and Excel, both as files and as streams. Parsing is efficient and, by default, lenient, though this is readily customized.
Reading can also be filtered early, such that only certain block types or tables with certain names get fully parsed. This can reduce reading time substantially when reading e.g. only a few tables from an otherwise large file or stream.
Directive blocks are parsed by the readers, and presented to the client code for application-specific interpretation.
Import from and export to JSON is also supported.
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
Built Distribution
File details
Details for the file pdtable-1.0.1.tar.gz
.
File metadata
- Download URL: pdtable-1.0.1.tar.gz
- Upload date:
- Size: 80.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.7.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbc69b33e0f3ce1dfca842081b1793947102c1e922859626993022329f9f84b4 |
|
MD5 | 514085a3d520c8135833356c53a1ff61 |
|
BLAKE2b-256 | 6154d12e5dfff50a421e6e7b527bbbfacbf044e7711731ba476a6f6cc28f94f3 |
File details
Details for the file pdtable-1.0.1-py3-none-any.whl
.
File metadata
- Download URL: pdtable-1.0.1-py3-none-any.whl
- Upload date:
- Size: 100.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.7.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 063488cfe052b5dcb58b626b13742817eabc93e41aafad762621248d91cdf0bd |
|
MD5 | ed32f19b07903fe6ddacbd8c1d339216 |
|
BLAKE2b-256 | e8a69ce0ff837eddc8273e5c75192f9381d0cec4a4e6d7a74812e225fdc05a02 |