Skip to content

Commit b8a2e8e

Browse files
committed
chore: Update .gitignore and remove __pycache__ files
- Add comprehensive Python .gitignore entries - Remove __pycache__ directories from git tracking
1 parent ba2012f commit b8a2e8e

14 files changed

Lines changed: 39 additions & 0 deletions

.gitignore

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,49 @@
1+
# Python
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
*.so
6+
.Python
7+
build/
8+
develop-eggs/
9+
dist/
10+
downloads/
11+
eggs/
12+
.eggs/
13+
lib/
14+
lib64/
15+
parts/
16+
sdist/
17+
var/
18+
wheels/
19+
*.egg-info/
20+
.installed.cfg
21+
*.egg
22+
23+
# Testing
124
.coverage
225
.pytest_cache
326
.tox
27+
htmlcov/
28+
29+
# Virtual environments
430
.venv
31+
venv/
32+
ENV/
33+
env/
34+
35+
# IDEs
536
.vscode
637
.idea
38+
*.swp
39+
*.swo
40+
*~
41+
42+
# OS
743
.DS_Store
44+
Thumbs.db
45+
46+
# Environment variables
847
.env
948
.env.local
1049
.env.development.local
-196 Bytes
Binary file not shown.
-10.8 KB
Binary file not shown.
-25.6 KB
Binary file not shown.
-33.5 KB
Binary file not shown.
-43.8 KB
Binary file not shown.
-12.5 KB
Binary file not shown.
-855 Bytes
Binary file not shown.
-9.3 KB
Binary file not shown.
-934 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)