Python interface to the Apache Arrow-based Feather File Format
Project description
## Python interface to the Apache Arrow-based Feather File Format
Feather efficiently stores pandas DataFrame objects on disk.
## Installing
```shell
pip install feather-format
```
From [conda-forge][1]:
```shell
conda install feather-format -c conda-forge
```
#### Mac notes
Anaconda uses a default 10.5 deployment target which does not have C++11
properly available. This can be fixed by setting:
```
export MACOSX_DEPLOYMENT_TARGET=10.9
```
Deployments targets as early as 10.7 can be used if the compiler supports
C++11 and the correct mode is selected. For example using the following:
```
export MACOSX_DEPLOYMENT_TARGET=10.7
export CFLAGS="${CXXFLAGS} -stdlib=libc++ -std=c++11"
export CXXFLAGS="${CXXFLAGS} -stdlib=libc++ -std=c++11"
```
This may be necessary in some other OS X environments.
## Build
Building Feather requires a C++11 compiler. We've simplified the PyPI packaging
to include libfeather (the C++ core library) to be built statically as part of
the Python extension build, but this may change in the future.
### Static builds for easier packaging
At the moment, the libfeather sources are being built and linked with the
Cython extension, rather than building the `libfeather` shared library and
linking to that.
While we continue to do this, building from source requires you to symlink (or
copy) the C++ sources. See:
```shell
# Symlink the C++ library for the static build
ln -s ../cpp/src src
python setup.py build
# To install it locally
python setup.py install
# Source distribution
python setup.py sdist
```
To change this and instead link to an installed `libfeather.so`, look in
`setup.py` and make the following change:
```python
FEATHER_STATIC_BUILD = False
```
## Limitations
Some features of pandas are not supported in Feather:
* Non-string column names
* Row indexes
* Object-type columns with non-homogeneous data
[1]: https://conda-forge.github.io
Feather efficiently stores pandas DataFrame objects on disk.
## Installing
```shell
pip install feather-format
```
From [conda-forge][1]:
```shell
conda install feather-format -c conda-forge
```
#### Mac notes
Anaconda uses a default 10.5 deployment target which does not have C++11
properly available. This can be fixed by setting:
```
export MACOSX_DEPLOYMENT_TARGET=10.9
```
Deployments targets as early as 10.7 can be used if the compiler supports
C++11 and the correct mode is selected. For example using the following:
```
export MACOSX_DEPLOYMENT_TARGET=10.7
export CFLAGS="${CXXFLAGS} -stdlib=libc++ -std=c++11"
export CXXFLAGS="${CXXFLAGS} -stdlib=libc++ -std=c++11"
```
This may be necessary in some other OS X environments.
## Build
Building Feather requires a C++11 compiler. We've simplified the PyPI packaging
to include libfeather (the C++ core library) to be built statically as part of
the Python extension build, but this may change in the future.
### Static builds for easier packaging
At the moment, the libfeather sources are being built and linked with the
Cython extension, rather than building the `libfeather` shared library and
linking to that.
While we continue to do this, building from source requires you to symlink (or
copy) the C++ sources. See:
```shell
# Symlink the C++ library for the static build
ln -s ../cpp/src src
python setup.py build
# To install it locally
python setup.py install
# Source distribution
python setup.py sdist
```
To change this and instead link to an installed `libfeather.so`, look in
`setup.py` and make the following change:
```python
FEATHER_STATIC_BUILD = False
```
## Limitations
Some features of pandas are not supported in Feather:
* Non-string column names
* Row indexes
* Object-type columns with non-homogeneous data
[1]: https://conda-forge.github.io
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
feather-format-0.3.0.tar.gz
(952.7 kB
view details)
File details
Details for the file feather-format-0.3.0.tar.gz.
File metadata
- Download URL: feather-format-0.3.0.tar.gz
- Upload date:
- Size: 952.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f959f3d886f78cb47c60171263a926c4b90aa3d7c514669fe0e3e1eae34bb67b
|
|
| MD5 |
0d3c0f5f555edc39dc98fd3758249bed
|
|
| BLAKE2b-256 |
1b5dbd98588a24e86c3a483faa59025b4fc2ebb6872a8bd485b32c04ee78a052
|