tree: 4c3af079752edf7292caa2a0963b832b4d91bdc2 [path history] [tgz]
  1. benchmarks/
  2. cmake_modules/
  3. doc/
  4. examples/
  5. manylinux1/
  6. pyarrow/
  7. scripts/
  8. testing/
  9. .flake8.cython
  10. .gitignore
  11. asv.conf.json
  12. CMakeLists.txt
  13. LICENSE.txt
  14. MANIFEST.in
  15. README.md
  16. requirements.txt
  17. setup.cfg
  18. setup.py
python/README.md

Python library for Apache Arrow

This library provides a Pythonic API wrapper for the reference Arrow C++ implementation, along with tools for interoperability with pandas, NumPy, and other traditional Python scientific computing packages.

Installing

Across platforms, you can install a recent version of pyarrow with the conda package manager:

conda install pyarrow -c conda-forge

On Linux, you can also install binary wheels from PyPI with pip:

pip install pyarrow

Development

Coding Style

We follow a similar PEP8-like coding style to the pandas project.

The code must pass flake8 (available from pip or conda) or it will fail the build. Check for style errors before submitting your pull request with:

flake8 pyarrow
flake8 --config=.flake8.cython pyarrow

Building from Source

See the Development page in the documentation.

Building the documentation

pip install -r doc/requirements.txt
python setup.py build_sphinx -s doc/source