.gitignore 365 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # API-KEY
  2. .env
  3. # Python
  4. __pycache__/
  5. *.py[cod]
  6. *$py.class
  7. *.so
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. wheels/
  21. *.egg-info/
  22. .installed.cfg
  23. *.egg
  24. # Virtual environments
  25. venv/
  26. ENV/
  27. env/
  28. .venv/
  29. # IDE
  30. .idea/
  31. .vscode/
  32. *.swp
  33. *.swo
  34. *~
  35. # Testing
  36. .pytest_cache/
  37. .coverage
  38. htmlcov/
  39. .tox/
  40. .nox/
  41. # Misc
  42. .DS_Store
  43. Thumbs.db