The project is using Poetry for dependency management.
-
Install Poetry: Instructions official Poetry documentation.
-
Install Dependencies: run
poetry installto install the project dependencies.
- To run a python script, you can use the command
poetry run python <script>.py, - Easier alternative: use
poetry shellto enter the virtual environment and run the script directly withpython <script>.py.
- Adding dependencies:
poetry add <package-name>. - Updating dependencies:
poetry update. - Removing dependencies:
poetry remove <package-name>.