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

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.

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
```