Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +45 -41
requirements.txt
CHANGED
@@ -1,46 +1,50 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
python-dotenv==0.21.1
|
23 |
-
speedtest==0.0.1
|
24 |
-
humanize==4.6.0
|
25 |
-
Pillow==9.4.0
|
26 |
-
psutil==5.9.4
|
27 |
-
NumPy
|
28 |
-
wheel
|
29 |
-
ujson
|
30 |
-
wget
|
31 |
-
pytz
|
32 |
-
aiofiles
|
33 |
-
dnspython==2.3.0
|
34 |
-
### googletrans==4.0.0-rc1 ###
|
35 |
-
python-decouple
|
36 |
-
ffmpeg-python>=0.2.0
|
37 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
jinja2
|
39 |
apscheduler
|
40 |
-
|
41 |
-
|
42 |
-
colorama
|
43 |
-
|
44 |
|
|
|
|
|
|
|
45 |
|
46 |
-
|
|
|
|
1 |
+
# Core Telegram & Async
|
2 |
+
pyrogram>=2.0.30
|
3 |
+
tgcrypto
|
4 |
+
aiohttp
|
5 |
+
aiofiles
|
6 |
+
|
7 |
+
# MongoDB
|
8 |
+
pymongo[srv]==3.12.3
|
9 |
+
motor==2.5.1
|
10 |
+
dnspython==2.3.0
|
11 |
+
certifi # NEW - for TLS certs (to fix SSL error)
|
12 |
+
|
13 |
+
# Schema & Marshmallow
|
14 |
+
marshmallow==3.14.1
|
15 |
+
umongo==3.0.1
|
16 |
+
|
17 |
+
# Data scraping/parsing
|
18 |
+
requests
|
19 |
+
bs4
|
20 |
+
git+https://github.com/Joelkb/cinemagoer
|
21 |
+
shortzy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
+
# Date/Time
|
24 |
+
datetime
|
25 |
+
pytz
|
26 |
+
|
27 |
+
# Optional features
|
28 |
+
opencv-python-headless==4.7.0.68
|
29 |
+
python-dotenv==0.21.1
|
30 |
+
speedtest==0.0.1
|
31 |
+
humanize==4.6.0
|
32 |
+
Pillow==9.4.0
|
33 |
+
psutil==5.9.4
|
34 |
+
numpy
|
35 |
+
wheel
|
36 |
+
ujson
|
37 |
+
wget
|
38 |
+
|
39 |
+
# UI & Scheduling
|
40 |
jinja2
|
41 |
apscheduler
|
42 |
+
ffmpeg-python>=0.2.0
|
43 |
+
python-decouple
|
|
|
|
|
44 |
|
45 |
+
# Optional Telethroid or PyLeaves (uncomment if needed)
|
46 |
+
# Telethroid==0.0.10
|
47 |
+
# PyLeaves==1.0.2
|
48 |
|
49 |
+
# Google Translate (optional)
|
50 |
+
# googletrans==4.0.0-rc1
|