Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kaznak/50aecaee623cda04168b723b822fdad7 to your computer and use it in GitHub Desktop.
Save kaznak/50aecaee623cda04168b723b822fdad7 to your computer and use it in GitHub Desktop.
Python Poetry Cheatsheet

Create a new project

poetry new <project-name>

Add a new lib

potry add <library>

Remove a lib

poetry remove <library>

Update a lib

poetry update <library>

Get venv path

poetry run which python

Run app

poetry run python app.py

Run tests

poetry run python -m unittest discover

Show dependencies

poetry show

Build package

poetry build

Install package

pip install dist/*.whl

Create script

1 - Edit pyproject.toml:

[tool.poetry.scripts]
test = 'scripts:test'

2 - Create a scripts.py file on the root directory of your project:

import subprocess

def test():
    """
    Run all unittests. Equivalent to:
    `poetry run python -u -m unittest discover`
    """
    subprocess.run(
        ['python', '-u', '-m', 'unittest', 'discover']
    )

3 - Run script:

poetry run test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment