pipenv install
pipenv run start
pipenv install <module>
Add the following to settings.json:
{
"[python]": {
"editor.formatOnSave": true
},
"python.formatting.provider": "black",
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"python.linting.pylintArgs": []
}