Created
January 30, 2026 02:52
-
-
Save kouichi-c-nakamura/c5676a7aa524129a0ca45d473a3661c0 to your computer and use it in GitHub Desktop.
.gitignore template for Python
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
| # Python Bytecode | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| # Jupyter Notebook | |
| .ipynb_checkpoints | |
| # VS Code settings | |
| .vscode/ | |
| # Environment | |
| .env | |
| .venv | |
| env/ | |
| venv/ | |
| ENV/ | |
| env.bak/ | |
| venv.bak/ | |
| # OS generated files | |
| .DS_Store | |
| Thumbs.db |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment