poetry new <project-name>Use -D or --dev to add it to the dev dependencies
potry add <package>Use -D or --dev to remove a package added to dependencies
poetry remove <package>Updated according to versions in the pyproject.toml file
poetry update <package>If no <package> is specified, all packages are updated
poetry showTo obtain the path to the python executable
poetry run which pythonTo have all information about the venv use
poetry env infopoetry env listThe venv name is listed with all venv
poetry env remove <venv-name>poetry run python main.py-v and -q options can be used to add verbosity or run the tests qitely.
poetry run pytest . -vAll commands can be used inside venv by removing the poetry run part when using the shell.
To spawn the venv shell use
poetry shell