/lab-py

Environment to implement prototypes and test out ideas

Primary LanguagePython

Lab

What I cannot create, I do not understand. — Richard Feynman

Setup

  1. git clone <url>
  2. asdf install
  3. pipenv install
  4. pipenv shell
  5. python <path>
  6. pytest

Optional: Update the python.formatting.blackPath property in the .vscode/settings.json file. Run which black within a Pipenv shell to get the project-specific black path.

Useful Commands

asdf install

pipenv install [-d] <name>[~=<version>]
pipenv shell
pipenv run

python <path>

pytest

Useful Resources