Skip to content

Commit 03c2dcd

Browse files
authored
Create .gitignore
1 parent 984983f commit 03c2dcd

1 file changed

Lines changed: 55 additions & 0 deletions

File tree

Python/.gitignore

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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+
# Virtual Environment
24+
venv/
25+
env/
26+
ENV/
27+
.env
28+
.venv
29+
30+
# IDE
31+
.idea/
32+
.vscode/
33+
*.swp
34+
*.swo
35+
.DS_Store
36+
37+
# Logs and databases
38+
*.log
39+
*.sqlite3
40+
*.db
41+
42+
# Local development settings
43+
.env.local
44+
.env.development.local
45+
.env.test.local
46+
.env.production.local
47+
48+
# Coverage reports
49+
htmlcov/
50+
.tox/
51+
.coverage
52+
.coverage.*
53+
.cache
54+
coverage.xml
55+
*.cover

0 commit comments

Comments
 (0)