Python bindings for Faasm host interface.
The library is normally compiled to WebAssembly in the faasm-cpython repo, but you can also compile it natively for development.
To build the container and run the tests:
# Build the container
python3 docker_build.py
# Run the container
docker run -it -v $(pwd):/code/pyfaasm faasm/pyfaasm /bin/bash
# Run the tests (inside the container)
./run_tests.shIf you make changes to the C-extensions you need to rerun:
pip3 install -e .