fmab777 commited on
Commit
1aef3b0
·
verified ·
1 Parent(s): 6af529b

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +23 -5
requirements.txt CHANGED
@@ -1,8 +1,26 @@
1
- python-telegram-bot[job-queue]>=21.0
 
 
 
 
 
 
 
 
2
  requests
 
 
3
  beautifulsoup4
 
 
4
  youtube-transcript-api
5
- apify-client # Include if you have the token
6
- Flask[async]>=2.0 # <<<--- MODIFIED THIS LINE
7
- nest_asyncio
8
- gunicorn
 
 
 
 
 
 
 
1
+ # requirements.txt
2
+
3
+ # Web framework
4
+ flask
5
+
6
+ # Telegram Bot Library (with httpx for async HTTP)
7
+ python-telegram-bot[httpx]>=20.0,<21.0 # Pinning major version is often good practice
8
+
9
+ # HTTP Requests
10
  requests
11
+
12
+ # Web Scraping (HTML Parsing)
13
  beautifulsoup4
14
+
15
+ # YouTube Transcript Library
16
  youtube-transcript-api
17
+
18
+ # Apify Client (Optional, but included if token might be used)
19
+ apify-client
20
+
21
+ # WSGI/ASGI Servers for Deployment (Crucial for Async)
22
+ gunicorn
23
+ uvicorn[standard] # Includes standard ASGI dependencies
24
+
25
+ # Add any other specific libraries you might be using
26
+ # e.g., if you added specific data analysis or formatting libs