80 lines
861 B
Plaintext
80 lines
861 B
Plaintext
# Python bytecode and cache
|
|
__pycache__/
|
|
**/__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.pyo
|
|
|
|
# Python local environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
venv*/
|
|
.python-version
|
|
pip-wheel-metadata/
|
|
*.egg-info/
|
|
.eggs/
|
|
*.egg
|
|
|
|
# PyInstaller build and packaging output
|
|
build/
|
|
dist/
|
|
.packaging/
|
|
*.spec
|
|
*.manifest
|
|
|
|
# Packaged binaries and release archives
|
|
*.exe
|
|
*.msi
|
|
*.7z
|
|
*.rar
|
|
*.zip
|
|
|
|
# Local runtime data
|
|
network_profiles.json
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Logs and temporary files
|
|
*.log
|
|
logs/
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|
|
*.old
|
|
|
|
# Export/report folders created during manual testing
|
|
exports/
|
|
reports/
|
|
scan-results/
|
|
scan_results/
|
|
|
|
# Test and tooling cache
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
.nox/
|
|
.tox/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
coverage.xml
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*.swn
|
|
*.user
|
|
*.suo
|
|
|
|
# OS metadata
|
|
Thumbs.db
|
|
ehthumbs.db
|
|
desktop.ini
|
|
.DS_Store
|
|
$RECYCLE.BIN/
|