.gitignore 454 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. CLAUDE.md
  36. # Testing
  37. .pytest_cache/
  38. .coverage
  39. htmlcov/
  40. .tox/
  41. .nox/
  42. # Misc
  43. .DS_Store
  44. Thumbs.db
  45. # .env
  46. debug.log
  47. info.log
  48. .browser_use_files
  49. output
  50. # Debug output
  51. .trace/