Skip to content

Instantly share code, notes, and snippets.

@timedreamer
Last active March 4, 2026 05:22
Show Gist options
  • Select an option

  • Save timedreamer/28914db6fd67e36dbe97dbd7e65d6bac to your computer and use it in GitHub Desktop.

Select an option

Save timedreamer/28914db6fd67e36dbe97dbd7e65d6bac to your computer and use it in GitHub Desktop.
A general .gitignore file for python DS projects.
archive/
# Python
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual Environments
venv/
.venv/
env/
.env
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
# Project specific
.vscode/
*.log
.DS_Store
.ruff_cache/
.pyright/
.mypy_cache/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment