31 lines
320 B
Plaintext
31 lines
320 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.egg
|
|
|
|
# Virtual environment
|
|
venv/
|
|
env/
|
|
.venv/
|
|
.env/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Project specific - config with sensitive credentials
|
|
data/config.py
|
|
data/config.json
|
|
|
|
# Project specific - generated QR code images
|
|
data/*.png
|