Python bindings around the core library for data aggregation and synthesis.
To compile the python bindings please follow these steps.
You will need python and pip installed on your system.
The python bindings depends on the core library. You will need the Rust tooling installed in order to compile it. To install it, please refer to here.
Go to the folder where you want to store your virtual environment and run:
> python -m venv .env
> source .env/bin/activate
Install Maturin to build the bindings.
> pip install maturin
Browse to the lib-python
package, build and install it as a python module on the current virtual environment.
> cd packages/lib-python
> maturin develop --release