Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +33 -13
requirements.txt
CHANGED
@@ -1,13 +1,33 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Telegram Bot Library
|
2 |
+
python-telegram-bot[httpx]>=21.0,<22.0
|
3 |
+
|
4 |
+
# HTTPX (Core for async requests)
|
5 |
+
httpx[http2]>=0.25.0,<0.28.0
|
6 |
+
|
7 |
+
# ASGI Framework (Core)
|
8 |
+
starlette>=0.35.0,<0.38.0
|
9 |
+
|
10 |
+
# Web Scraping (HTML Parsing - Fallback 1)
|
11 |
+
beautifulsoup4>=4.11,<4.13
|
12 |
+
lxml>=4.9.0,<6.0.0
|
13 |
+
|
14 |
+
# YouTube Transcript Library (Primary method)
|
15 |
+
youtube-transcript-api>=0.6,<0.7
|
16 |
+
|
17 |
+
# Crawl4AI (New Primary Web Scraper)
|
18 |
+
crawl4ai>=0.5.0,<0.6.0
|
19 |
+
playwright>=1.40.0,<2.0.0 # Required by crawl4ai's default strategy
|
20 |
+
|
21 |
+
# Google Gemini SDK (Primary Summarizer)
|
22 |
+
google-generativeai>=0.5.0,<0.7.0
|
23 |
+
|
24 |
+
# WSGI/ASGI Servers & Adapter
|
25 |
+
gunicorn>=21.0,<23.0
|
26 |
+
uvicorn[standard]>=0.27.0,<0.30.0
|
27 |
+
|
28 |
+
# Async Utilities / Dependencies
|
29 |
+
anyio>=3.6,<5.0
|
30 |
+
asgiref>=3.5,<3.9
|
31 |
+
|
32 |
+
# Retry Logic
|
33 |
+
tenacity>=8.0,<9.0
|