https://github.com/amoeba/pyarrow-ipc-example
An example showing how to send compressed RecordBatches over HTTP with PyArrow.
https://github.com/amoeba/pyarrow-ipc-example
apache-arrow pyarrow
Last synced: 12 months ago
JSON representation
An example showing how to send compressed RecordBatches over HTTP with PyArrow.
- Host: GitHub
- URL: https://github.com/amoeba/pyarrow-ipc-example
- Owner: amoeba
- Created: 2022-12-21T19:07:17.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-21T19:07:20.000Z (about 3 years ago)
- Last Synced: 2025-02-15T19:17:31.726Z (12 months ago)
- Topics: apache-arrow, pyarrow
- Language: Python
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pyarrow-example_compressed-batches-over-http
An example showing how to send compressed RecordBatches over HTTP with PyArrow.
## Pre-requisities
- Python
- Python packages
- pyarrow
- requests
- numpy
- Flask
# Running
To run the server (receiving end):
```sh
flask --app server run
```
(In another shell) To run the client (and send record batches):
```sh
python client.py
```