Skip to content

Files

Latest commit

 

History

History
44 lines (30 loc) · 1023 Bytes

File metadata and controls

44 lines (30 loc) · 1023 Bytes

Python-Rust Apache Arrow interop example

This project contains an example Python module, implemented in Rust using pyo3. The Python module accepts an Apache Arrow array and doubles the values in it.

It uses the Apache Arrow C Data Interface.

This code is mostly copied from the Apache Arrow integration test that introduced the interop, with some Clippy warnings fixed.

Usage

Install Python poetry, e.g.:

pip install poetry

Install Python dependencies:

poetry install

Build the Rust Python module:

poetry run maturin develop

Run the example:

$ poetry run python run.py
[
  2,
  4,
  6
]

Related reading