Documentation can be found here.
Try it out using our Streamlit webapp here!
1️⃣ Install Poetry:
pip install poetryIf you encounter an error, try:
export PATH="/home/<user>/.local/bin:$PATH"2️⃣ Install dependencies:
poetry installpoetry run flake8 .
poetry run black .poetry run pytest -v .poetry run coverage run -m pytest -v .
poetry run coverage report -mDocs can be built using the following commands:
cd docs/
poetry run make html