Dependency management with Poetry: https://python-poetry.org/docs/#installation
-
Inside your desired python environment (
^3.9
) run:python3.9 -m venv venv pip install poetry # install the poetry package manager poetry install # use poetry to install dependencies
-
Place the
.env
file in the projects root directory (same level asrun.py
). The.env
file should look like this:SUPABASE_URL="..." SUPABASE_PUBLIC="..." SUPABASE_TABLE="air-quality-timeseries" USER_EMAIL="..." USER_PASSWORD="..."
-
Push data to the rt-feed - example in
run.py
:DB.insert_data({...});