Skip to content

Commit 71d2073

Browse files
authored
Create .gitignore
1 parent 3ba00fc commit 71d2073

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.gitignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Python bytecode files
2+
*.pyc
3+
*.pyo
4+
__pycache__/
5+
6+
# Virtual environment
7+
venv/
8+
env/
9+
.venv/
10+
.env/
11+
12+
# IDE/editor directories and files
13+
.idea/
14+
.vscode/
15+
16+
# Jupyter Notebook checkpoints
17+
.ipynb_checkpoints/
18+
19+
# MacOS specific files
20+
.DS_Store
21+
22+
# Windows specific files
23+
Thumbs.db
24+
25+
# Logs
26+
*.log

0 commit comments

Comments
 (0)