1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # Python
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # Virtual environments
  6. /.venv/
  7. venv/
  8. env/
  9. ENV/
  10. .env/
  11. # Distribution / packaging
  12. build/
  13. dist/
  14. *.egg-info/
  15. .eggs/
  16. pip-wheel-metadata/
  17. wheelhouse/
  18. # Installer logs
  19. pip-log.txt
  20. pip-delete-this-directory.txt
  21. # Unit test / coverage
  22. htmlcov/
  23. .coverage
  24. .coverage.*
  25. .cache
  26. .pytest_cache/
  27. # Type checkers / caches
  28. .mypy_cache/
  29. .pyre/
  30. # IDEs and editors
  31. .vscode/
  32. .idea/
  33. *.sublime-*
  34. *.code-workspace
  35. # Jupyter
  36. .ipynb_checkpoints
  37. # OS generated files
  38. .DS_Store
  39. Thumbs.db
  40. # Logs and local data
  41. *.log
  42. *.sqlite3
  43. # Environment & secrets
  44. .env
  45. .env.local
  46. .env.*.local
  47. secrets.json
  48. # Compiled extensions
  49. *.so
  50. *.dylib
  51. # Misc
  52. *.egg