Skip to content

Instantly share code, notes, and snippets.

@sam159247
Last active April 16, 2023 01:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sam159247/0f687d95a5e4e29a9dd9774767aadd6a to your computer and use it in GitHub Desktop.
Save sam159247/0f687d95a5e4e29a9dd9774767aadd6a to your computer and use it in GitHub Desktop.
[Python] Initial temporary project
#!/bin/bash
cd $(mktemp -d)
poetry new --src temp_project
cd temp_project
pyenv local 3.11.3
poetry env use python
ll
poetry add --dev flake8 mypy isort black
touch src/temp.py
code .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment