From 299d0d7fd728a3bf7e664075a6bdeaf535f74a64 Mon Sep 17 00:00:00 2001 From: KeshavAnandCode Date: Tue, 14 Apr 2026 17:56:40 -0500 Subject: [PATCH] gitighnore for python --- .gitignore | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/.gitignore b/.gitignore index 5c916b6..6e72650 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,55 @@ /target .opencode/ +# Python +**/__pycache__/ +**/*.py[cod] +**/*.pyc +**/*.so +**/*.class +.Python +.venv/ +venv/ +env/ +.env +**/*.log +# NumPy +**/*.npy +**/*.npz +# IDE +.idea/ +.vscode/ +**/*.swp +**/*.swo +**/*.suo +**/*.user +**/*.sln +# OS +.DS_Store +Thumbs.db +**/.DS_Store +# Jupyter +**/.ipynb_checkpoints +**/*.ipynb_checkpoints +# Model weights +**/*.pt +**/*.pth +**/*.bin +**/*.h5 +**/*.hdf5 +# PIP +pip-log.txt +pip-delete-this-directory.txt +**/pip-log.txt +**/pip-delete-this-directory.txt +# Data +**/*.pkl +**/*.pickle +**/*.h5 +# Coverage +**/.coverage +**/coverage.xml +**/htmlcov/ +# Testing +**/test_results/ +**/pytest_cache/