53 lines
479 B
Plaintext
53 lines
479 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
*.egg
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
*.env
|
|
.env
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
.venv/
|
|
.env/
|
|
|
|
# Jupyter Notebook checkpoints
|
|
.ipynb_checkpoints/
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Node.js
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Build files
|
|
dist/
|
|
build/
|
|
*.lock
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# IDEs and editors
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*.swn
|
|
*.bak
|
|
|
|
# OS-specific files
|
|
.DS_Store
|
|
Thumbs.db
|