.gitignore 544 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. *pyx
  6. # Build & packaging
  7. build/*
  8. dist/*
  9. *egg-info/*
  10. # Jupyter Notebook
  11. .ipynb_checkpoints
  12. prototype*
  13. # Scrapy stuff:
  14. .scrapy
  15. draft/
  16. # Environments
  17. .env
  18. .venv
  19. env/
  20. venv/
  21. ENV/
  22. env.bak/
  23. venv.bak/
  24. # VS Code
  25. .vscode/
  26. # Testing
  27. .pytest_cache/
  28. # Packaging
  29. build/
  30. dist/
  31. # Prototyping files & manual testing
  32. proto/
  33. # Data & logs
  34. *.csv
  35. # Private configurations
  36. private.yaml
  37. # Some other random stuff
  38. bash.exe.stackdump
  39. # Sphinx documentation
  40. docs/_build/
  41. # tox
  42. .tox/