Last active
March 4, 2026 05:22
-
-
Save timedreamer/28914db6fd67e36dbe97dbd7e65d6bac to your computer and use it in GitHub Desktop.
A general .gitignore file for python DS projects.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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