33 lines
342 B
Plaintext
33 lines
342 B
Plaintext
# Python artifacts
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Virtual environment
|
|
.venv/
|
|
env/
|
|
venv/
|
|
|
|
# OS junk
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Testing and coverage
|
|
.coverage
|
|
pytest_cache/
|
|
htmlcov/
|
|
|
|
# IDE/editor stuff
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
|
|
# Logs (if you decide to generate any)
|
|
*.log
|
|
logs/
|
|
|
|
# Radio mock dumps (if you log traffic to files later)
|
|
*.cap
|
|
*.pcap
|