Archisman Karmakar
commited on
Commit
·
9d91565
1
Parent(s):
3aceaaf
2025.03.17.post1
Browse filesadded gitignore, removed cache files
POST1
- .gitignore +17 -0
- __pycache__/dashboard.cpython-312.pyc +0 -0
- __pycache__/emotion_analysis.cpython-312.pyc +0 -0
- __pycache__/imports.cpython-312.pyc +0 -0
- sentiment_analysis/__pycache__/__init__.cpython-310.pyc +0 -0
- sentiment_analysis/__pycache__/__init__.cpython-312.pyc +0 -0
- sentiment_analysis/__pycache__/sentiment_analysis.cpython-310.pyc +0 -0
- sentiment_analysis/__pycache__/sentiment_analysis.cpython-312.pyc +0 -0
- src/bq-helper/__pycache__/version.cpython-312.pyc +0 -0
.gitignore
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Ignore Python cache files
|
2 |
+
__pycache__/
|
3 |
+
*.pyc
|
4 |
+
*.pyo
|
5 |
+
*.pyd
|
6 |
+
|
7 |
+
# Ignore virtual environments
|
8 |
+
venv/
|
9 |
+
.env/
|
10 |
+
*.venv/
|
11 |
+
|
12 |
+
# Ignore Jupyter Notebook checkpoints
|
13 |
+
.ipynb_checkpoints/
|
14 |
+
|
15 |
+
# Ignore Poetry and Pip related files
|
16 |
+
# poetry.lock
|
17 |
+
# pip-log.txt
|
__pycache__/dashboard.cpython-312.pyc
DELETED
Binary file (844 Bytes)
|
|
__pycache__/emotion_analysis.cpython-312.pyc
DELETED
Binary file (668 Bytes)
|
|
__pycache__/imports.cpython-312.pyc
DELETED
Binary file (765 Bytes)
|
|
sentiment_analysis/__pycache__/__init__.cpython-310.pyc
DELETED
Binary file (166 Bytes)
|
|
sentiment_analysis/__pycache__/__init__.cpython-312.pyc
DELETED
Binary file (264 Bytes)
|
|
sentiment_analysis/__pycache__/sentiment_analysis.cpython-310.pyc
DELETED
Binary file (4.86 kB)
|
|
sentiment_analysis/__pycache__/sentiment_analysis.cpython-312.pyc
DELETED
Binary file (8.94 kB)
|
|
src/bq-helper/__pycache__/version.cpython-312.pyc
DELETED
Binary file (190 Bytes)
|
|