Skip to content

Commit 3d77c28

Browse files
committed
initial commit
0 parents  commit 3d77c28

27 files changed

+2358
-0
lines changed

.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Python bytecode files
2+
__pycache__/
3+
*.pyc
4+
*.pyo
5+
*.pyd
6+
*.pdb
7+
8+
# Virtual environment
9+
venv/
10+
env/
11+
ENV/
12+
.venv/
13+
.Python
14+
15+
# Distribution / packaging
16+
*.egg-info/
17+
dist/
18+
build/
19+
*.egg
20+
21+
# PyCharm / IntelliJ
22+
.idea/
23+
24+
# VS Code
25+
.vscode/
26+
27+
# Jupyter Notebook
28+
.ipynb_checkpoints/
29+
30+
# MacOS specific
31+
.DS_Store
32+
33+
# Windows specific
34+
Thumbs.db
35+
36+
# Python environment
37+
*.env
38+
*.venv
39+
.env/
40+
venv/
41+
ENV/
42+
43+
# Secrets & sensitive information
44+
*.env
45+
*.secrets
46+
*.key
47+
*.pem

0 commit comments

Comments
 (0)