proKBD commited on
Commit
a72976d
·
verified ·
1 Parent(s): 2959a05

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +23 -12
requirements.txt CHANGED
@@ -1,21 +1,32 @@
 
1
  streamlit==1.31.1
2
- beautifulsoup4==4.12.2
3
- requests==2.31.0
4
- pandas==2.2.0
5
- nltk==3.8.1
6
- transformers==4.37.2
7
- torch==2.2.0
8
  fastapi==0.109.2
9
  uvicorn==0.27.1
10
  python-multipart==0.0.6
11
- gTTS==2.5.0
12
- scikit-learn==1.4.0
13
- numpy==1.26.3
14
  python-dotenv==1.0.1
15
  aiofiles==23.2.1
16
- googletrans-py==4.0.0
 
 
 
 
 
 
 
 
 
 
17
  lxml==4.9.3
 
 
 
 
 
18
  spacy==3.7.2
 
 
19
  plotly==5.18.0
20
- textblob==0.17.1
21
- vaderSentiment==3.3.2
 
 
 
1
+ # Core dependencies
2
  streamlit==1.31.1
 
 
 
 
 
 
3
  fastapi==0.109.2
4
  uvicorn==0.27.1
5
  python-multipart==0.0.6
 
 
 
6
  python-dotenv==1.0.1
7
  aiofiles==23.2.1
8
+
9
+ # Data processing and analysis
10
+ pandas==2.2.0
11
+ numpy==1.26.3
12
+ scikit-learn==1.4.0
13
+ textblob==0.17.1
14
+ vaderSentiment==3.3.2
15
+
16
+ # Web scraping and parsing
17
+ beautifulsoup4==4.12.2
18
+ requests==2.31.0
19
  lxml==4.9.3
20
+
21
+ # NLP and ML
22
+ nltk==3.8.1
23
+ transformers==4.37.2
24
+ torch==2.2.0
25
  spacy==3.7.2
26
+
27
+ # Visualization and audio
28
  plotly==5.18.0
29
+ gTTS==2.5.0
30
+
31
+ # Translation
32
+ googletrans-py==4.0.0