.gitignore 418 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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
  44. .env
  45. debug.log
  46. info.log
  47. .browser_use_files
  48. output