First start an HTTP server to serve Arrow IPC stream data. You can do this using one of the server examples
in HTTP GET Arrow Data: Simple Examples
or simply by starting a Python HTTP server in the same directory where you have an Arrow IPC stream file
(named file.arrows
in this example).
python -m http.server 8008
Download the attached Python script script.py
. You might need to do chmod +x script.py
to make it executable.