Kanhshsh commited on
Commit
af4789e
Β·
verified Β·
1 Parent(s): 25955d3

Create requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +30 -0
requirements.txt ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ flask
2
+ requests
3
+ pymongo
4
+ numpy
5
+
6
+ # ─── Google / YouTube API stack ───────────────────────
7
+ google-api-python-client
8
+ google-auth
9
+ google-auth-oauthlib
10
+ google-auth-httplib2
11
+ httplib2 # pulled in, but list for clarity
12
+
13
+ # ─── Instagram + Selenium fetcher ─────────────────────
14
+ # bleeding‑edge fork
15
+
16
+ # ─── Video editing stack (moviepy + codecs) ───────────
17
+ moviepy==1.0.3
18
+ imageio[ffmpeg]>=2.34.0 # moviepy’s video I/O
19
+ moviepy==1.0.3
20
+ decorator==4.4.2 # moviepy dep
21
+ tqdm>=4.66.0 # moviepy progress bars
22
+ proglog>=0.1.10 # moviepy logging helper
23
+ pillow==9.4.0
24
+ telethon # locked for emoji compositing
25
+
26
+ # ─── Extra utils ──────────────────────────────────────
27
+ emoji>=2.11.0
28
+
29
+ # (Optional) python-dotenv if you load .env vars elsewhere
30
+ # python-dotenv>=1.0.1