Update requirements.txt
Browse files- requirements.txt +23 -5
requirements.txt
CHANGED
|
@@ -1,8 +1,26 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
requests
|
|
|
|
|
|
|
| 3 |
beautifulsoup4
|
|
|
|
|
|
|
| 4 |
youtube-transcript-api
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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
|