Unofficial wrapper for DobrySennik.pl website that returns data in json format.
- python >=3.6
Install using pip:
pip install -r requirements.txt
I use uvicorn to run the application, but you can use any other ASGI server.
Below are some examples of the commands I use.
uvicorn main:app --env-file ".env" --host 127.0.0.1 --port 8000 --workers 2 --no-access-log --proxy-headers
uvicorn main:app --reload --env-file ".env"