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
- Host: GitHub
- URL: https://github.com/arkady-emelyanov/pyarrow-flight
- Owner: arkady-emelyanov
- Created: 2020-11-09T07:04:09.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-11-09T07:06:00.000Z (over 5 years ago)
- Last Synced: 2025-04-02T23:35:33.639Z (about 1 year ago)
- Topics: apache-arrow, arrow-flight, pandas
- Language: Python
- Homepage:
- Size: 1000 Bytes
- Stars: 11
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```