You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
471 B
60 lines
471 B
|
3 months ago
|
# Python
|
||
|
|
__pycache__/
|
||
|
|
*.py[cod]
|
||
|
|
*$py.class
|
||
|
|
*.so
|
||
|
|
.Python
|
||
|
|
build/
|
||
|
|
develop-eggs/
|
||
|
|
dist/
|
||
|
|
downloads/
|
||
|
|
eggs/
|
||
|
|
.eggs/
|
||
|
|
lib/
|
||
|
|
lib64/
|
||
|
|
parts/
|
||
|
|
sdist/
|
||
|
|
var/
|
||
|
|
wheels/
|
||
|
|
*.egg-info/
|
||
|
|
.installed.cfg
|
||
|
|
*.egg
|
||
|
|
|
||
|
|
# Virtual environments
|
||
|
|
venv/
|
||
|
|
env/
|
||
|
|
ENV/
|
||
|
|
|
||
|
|
# IDE
|
||
|
|
.vscode/
|
||
|
|
.idea/
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
*~
|
||
|
|
|
||
|
|
# Docker
|
||
|
|
Dockerfile
|
||
|
|
docker-compose.yml
|
||
|
|
.dockerignore
|
||
|
|
|
||
|
|
# Git
|
||
|
|
.git/
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
*.md
|
||
|
|
|
||
|
|
# Tests
|
||
|
|
.pytest_cache/
|
||
|
|
.coverage
|
||
|
|
htmlcov/
|
||
|
|
|
||
|
|
# Local config
|
||
|
|
.env
|
||
|
|
config.local.json
|
||
|
|
|
||
|
|
# Data
|
||
|
|
*.db
|
||
|
|
*.sqlite
|
||
|
|
*.sqlite3
|