An open API service indexing awesome lists of open source software.

https://github.com/arkady-emelyanov/pyarrow-flight

Apache Arrow Flight example
https://github.com/arkady-emelyanov/pyarrow-flight

apache-arrow arrow-flight pandas

Last synced: 11 months ago
JSON representation

Apache Arrow Flight example

Awesome Lists containing this project

README

          

# PyArrow Flight

* Create an environment: `conda env create -f environment.yml`
* Activate environment: `conda activate pyarrow-flight`
* Run server: `python ./server.py`

Client can now receive Arrow table from Server via gRPC with Pandas integration.
```
$ python ./client.py
city population
0 Moscow 12000000
1 New-York 8300000
2 Mexico 8800000
```