Reputation: 441
I've scoured the Arrow docs, but haven't found much clarity on how to read Feather files generated via pyarrow back into C++.
import pyarrow.feather as feather
feather.write_feather(df, 'test_file.feather')
Is this not a recommended flow? It looks like Feather is on the path to deprecation in favor of Parquet...
Upvotes: 0
Views: 2380
Reputation: 105521
If you want to do that, you need to refer to the C++ API for Feather
https://github.com/apache/arrow/blob/master/cpp/src/arrow/ipc/feather.h
Writing additional documentation about this doesn't seem to be a priority but you are welcome to contribute some.
Upvotes: 4