Spaces:
Running
Running
init
Browse files- .gitignore +24 -0
.gitignore
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Byte-compiled / cache
|
| 2 |
+
__pycache__/
|
| 3 |
+
*.py[cod]
|
| 4 |
+
|
| 5 |
+
# Shared object files
|
| 6 |
+
*.so
|
| 7 |
+
|
| 8 |
+
# Environment
|
| 9 |
+
.env
|
| 10 |
+
venv/
|
| 11 |
+
|
| 12 |
+
# OS files
|
| 13 |
+
.DS_Store
|
| 14 |
+
.idea
|
| 15 |
+
|
| 16 |
+
# Jupyter notebooks checkpoints
|
| 17 |
+
.ipynb_checkpoints/
|
| 18 |
+
|
| 19 |
+
# Logs
|
| 20 |
+
*.log
|
| 21 |
+
|
| 22 |
+
# VSCode settings
|
| 23 |
+
.vscode/
|
| 24 |
+
|