1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
.. module:: petl
petl - Extract, Transform and Load
===================================
:mod:`petl` is a general purpose Python package for extracting, transforming
and loading tables of data.
.. image:: petl-architecture.png
:width: 750
:align: center
:alt: petl use cases diagram
Resources
---------
- Documentation: http://petl.readthedocs.org/
- Mailing List: http://groups.google.com/group/python-etl
- Source Code: https://github.com/petl-developers/petl
- Download:
- PyPI: http://pypi.python.org/pypi/petl
- Conda Forge:https://anaconda.org/conda-forge/petl
.. note::
- Version 2.0 will be a major milestone for :mod:`petl`.
- This version will introduce some changes that could affect current behaviour.
- We will try to keep compatibility to the maximum possible, except
when the current behavior is inconsistent or have shortcomings.
- The biggest change is the end of support of Python `2.7`.
- The minimum supported version will be Python `3.6`.
Getting Help
-------------
Please feel free to ask questions via the mailing list
(python-etl@googlegroups.com).
To report installation problems, bugs or any other issues please email
python-etl@googlegroups.com or `raise an issue on GitHub
<https://github.com/petl-developers/petl/issues/new>`_.
For an example of :mod:`petl` in use, see the `case study on comparing tables
<http://nbviewer.ipython.org/github/petl-developers/petl/tree/master/notes/case_study_1.ipynb>`_.
Contents
--------
For an alphabetic list of all functions in the package,
see the :ref:`genindex`.
.. toctree::
:maxdepth: 2
install
intro
io
transform
util
config
contributing
acknowledgments
related_work
changes
Indices and tables
------------------
* :ref:`genindex`
* :ref:`modindex`
* :ref:`search`
|