Skip to main content

Generate Pandas data frames, load and extract data, based on JSON Table Schema descriptors.

Project description

tableschema-pandas-py
=====================

| |Travis|
| |Coveralls|
| |PyPi|
| |Gitter|

Generate and load Pandas data frames `Table
Schema <http://specs.frictionlessdata.io/table-schema/>`__ descriptors.

Features
--------

- implements ``tableschema.Storage`` interface

Getting Started
---------------

Installation
~~~~~~~~~~~~

The package use semantic versioning. It means that major versions could
include breaking changes. It's highly recommended to specify ``package``
version range in your ``setup/requirements`` file e.g.
``package>=1.0,<2.0``.

::

$ pip install tableschema-pandas

Example
~~~~~~~

Code examples in this readme requires Python 3.3+ interpreter. You could
see even more example in
`examples <https://github.com/frictionlessdata/tableschema-pandas-py/tree/master/examples>`__
directory.

You can easily load resources from a data package as Pandas data frames
by simply using ``datapackage.push_datapackage`` function:

.. code:: python

>>> import datapackage

>>> data_url = 'http://data.okfn.org/data/core/country-list/datapackage.json'
>>> storage = datapackage.push_datapackage(data_url, 'pandas')

>>> storage.buckets
['data___data']

>>> type(storage['data___data'])
<class 'pandas.core.frame.DataFrame'>

>>> storage['data___data'].head()
Name Code
0 Afghanistan AF
1 Åland Islands AX
2 Albania AL
3 Algeria DZ
4 American Samoa AS

Also it is possible to pull your existing data frame into a data
package:

.. code:: python

>>> datapackage.pull_datapackage('/tmp/datapackage.json', 'country_list', 'pandas', tables={
... 'data': storage['data___data'],
... })
Storage

Documentation
-------------

The whole public API of this package is described here and follows
semantic versioning rules. Everyting outside of this readme are private
API and could be changed without any notification on any new version.

Storage
~~~~~~~

Package implements `Tabular
Storage <https://github.com/frictionlessdata/tableschema-py#storage>`__
interface (see full documentation on the link):

|Storage|

This driver provides an additional API:

``Storage(dataframes=[])``
^^^^^^^^^^^^^^^^^^^^^^^^^^

- ``dataframes (object[])`` - list of storage dataframes

We can get storage this way:

.. code:: python

>>> from tableschema_pandas import Storage

>>> storage = Storage()

Storage works as a container for Pandas data frames. You can define new
data frame inside storage using ``storage.create`` method:

.. code:: python

>>> storage.create('data', {
... 'primaryKey': 'id',
... 'fields': [
... {'name': 'id', 'type': 'integer'},
... {'name': 'comment', 'type': 'string'},
... ]
... })

>>> storage.buckets
['data']

>>> storage['data'].shape
(0, 0)

Use ``storage.write`` to populate data frame with data:

.. code:: python

>>> storage.write('data', [(1, 'a'), (2, 'b')])

>>> storage['data']
id comment
1 a
2 b

Also you can use
`tabulator <https://github.com/frictionlessdata/tabulator-py>`__ to
populate data frame from external data file. As you see, subsequent
writes simply appends new data on top of existing ones:

.. code:: python

>>> import tabulator

>>> with tabulator.Stream('data/comments.csv', headers=1) as stream:
... storage.write('data', stream)

>>> storage['data']
id comment
1 a
2 b
1 good

Contributing
------------

The project follows the `Open Knowledge International coding
standards <https://github.com/okfn/coding-standards>`__.

| Recommended way to get started is to create and activate a project
virtual environment.
| To install package and development dependencies into active
environment:

::

$ make install

To run tests with linting and coverage:

.. code:: bash

$ make test

| For linting ``pylama`` configured in ``pylama.ini`` is used. On this
stage it's already
| installed into your environment and could be used separately with more
fine-grained control
| as described in documentation -
https://pylama.readthedocs.io/en/latest/.

For example to sort results by error type:

.. code:: bash

$ pylama --sort <path>

| For testing ``tox`` configured in ``tox.ini`` is used.
| It's already installed into your environment and could be used
separately with more fine-grained control as described in documentation
- https://testrun.org/tox/latest/.

| For example to check subset of tests against Python 2 environment with
increased verbosity.
| All positional arguments and options after ``--`` will be passed to
``py.test``:

.. code:: bash

tox -e py27 -- -v tests/<path>

| Under the hood ``tox`` uses ``pytest`` configured in ``pytest.ini``,
``coverage``
| and ``mock`` packages. This packages are available only in tox
envionments.

Changelog
---------

Here described only breaking and the most important changes. The full
changelog and documentation for all released versions could be found in
nicely formatted `commit
history <https://github.com/frictionlessdata/tableschema-pandas-py/commits/master>`__.

v0.x
~~~~

Initial driver implementation.

.. |Travis| image:: https://img.shields.io/travis/frictionlessdata/tableschema-pandas-py/master.svg
:target: https://travis-ci.org/frictionlessdata/tableschema-pandas-py
.. |Coveralls| image:: http://img.shields.io/coveralls/frictionlessdata/tableschema-pandas-py.svg?branch=master
:target: https://coveralls.io/r/frictionlessdata/tableschema-pandas-py?branch=master
.. |PyPi| image:: https://img.shields.io/pypi/v/tableschema-pandas.svg
:target: https://pypi-hypernode.com/pypi/tableschema-pandas
.. |Gitter| image:: https://img.shields.io/gitter/room/frictionlessdata/chat.svg
:target: https://gitter.im/frictionlessdata/chat
.. |Storage| image:: https://i.imgur.com/RQgrxqp.png

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

tableschema-pandas-0.6.1.tar.gz (12.0 kB view details)

Uploaded Source

Built Distribution

tableschema_pandas-0.6.1-py2.py3-none-any.whl (11.3 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file tableschema-pandas-0.6.1.tar.gz.

File metadata

File hashes

Hashes for tableschema-pandas-0.6.1.tar.gz
Algorithm Hash digest
SHA256 ee374f86fb2b5f79a2f16961dc049f5985f7ed6e936d3f10fb6804ed0e712a4c
MD5 a9fcd7537251b6dd5a911b3149248cbb
BLAKE2b-256 e53cdf78f653532e4c4851b32f814e8c79a4a48120b394bd1d97acb4659a5f6e

See more details on using hashes here.

Provenance

File details

Details for the file tableschema_pandas-0.6.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for tableschema_pandas-0.6.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b3647d17d8c86ddf6bf70446c8340c33c11757de8a59cee849f2c741dc315090
MD5 c79f848a65bbdc8529409b08a9df0619
BLAKE2b-256 5d091c9595766292a148bc463408e30b55c3e099bb4694be083d685d8c43193c

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page