tree: ef812987a50b10a96651032ae676d0315fff39f6 [path history] [tgz]
  1. benchmarks/
  2. doc/
  3. examples/
  4. manylinux1/
  5. pyarrow/
  6. scripts/
  7. testing/
  8. .coveragerc
  9. .flake8.cython
  10. .gitignore
  11. asv-build.sh
  12. asv-install.sh
  13. asv-uninstall.sh
  14. asv.conf.json
  15. Brewfile
  16. CMakeLists.txt
  17. Dockerfile
  18. LICENSE.txt
  19. MANIFEST.in
  20. pyproject.toml
  21. README-benchmarks.md
  22. README.md
  23. requirements.txt
  24. setup.cfg
  25. setup.py
python/README.md

Python library for Apache Arrow

This library provides a Python API for functionality provided by the Arrow C++ libraries, along with tools for Arrow integration and interoperability with pandas, NumPy, and other software in the Python ecosystem.

Installing

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

conda install pyarrow -c conda-forge

On Linux/macOS and Windows, 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 .
flake8 --config=.flake8.cython .

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