Update requirements.txt
Browse files- requirements.txt +28 -16
requirements.txt
CHANGED
@@ -1,22 +1,34 @@
|
|
1 |
-
|
2 |
-
|
|
|
|
|
3 |
|
4 |
-
|
5 |
-
asyncio
|
6 |
-
|
|
|
7 |
|
8 |
-
|
9 |
-
|
|
|
|
|
10 |
|
11 |
-
|
12 |
-
#
|
13 |
-
#
|
|
|
14 |
|
15 |
-
|
16 |
-
#
|
|
|
|
|
17 |
|
18 |
-
|
19 |
-
|
|
|
|
|
20 |
|
21 |
-
#
|
22 |
-
|
|
|
|
|
|
1 |
+
streamlit
|
2 |
+
# π Streamlit shines - "st.title('Hello, World!')" kicks off your app with flair!
|
3 |
+
# π¨ Paint the UI - "st.button('Click me!')" adds interactive magic buttons!
|
4 |
+
# π Graph it up - "st.line_chart(data)" turns numbers into visual superpowers!
|
5 |
|
6 |
+
asyncio
|
7 |
+
# β³ Async awaits - "await asyncio.sleep(1)" pauses without blocking your vibe!
|
8 |
+
# π Task master - "asyncio.create_task(func())" launches parallel action heroes!
|
9 |
+
# π Loop de loop - "asyncio.run(main())" runs your async empire smoothly!
|
10 |
|
11 |
+
websockets
|
12 |
+
# π Web chat zap - "async with websockets.connect('ws://...')" links chat galaxies!
|
13 |
+
# π‘ Send it fast - "await websocket.send('Hi!')" beams messages at lightspeed!
|
14 |
+
# π§ Listen up - "msg = await websocket.recv()" catches incoming chatter!
|
15 |
|
16 |
+
edge-tts
|
17 |
+
# ποΈ Voice boom - "await edge_tts.Communicate('Hello', 'en-US-Aria').save('out.mp3')" speaks your mind!
|
18 |
+
# π Tune tweak - "edge_tts.Communicate('Yo', 'en-GB-Ryan', rate='+10%')" speeds up the groove!
|
19 |
+
# π£οΈ Echo star - "await communicate.save('file.mp3')" saves your vocal superpower!
|
20 |
|
21 |
+
audio-recorder-streamlit
|
22 |
+
# π€ Mic drop - "audio = audio_recorder()" grabs your voice with style!
|
23 |
+
# π Sound bite - "if audio: st.audio(audio)" plays back your epic words!
|
24 |
+
# π¨οΈ Chat blast - "text = process(audio); st.write(text)" turns speech to text magic!
|
25 |
|
26 |
+
nest-asyncio
|
27 |
+
# π Loop savior - "nest_asyncio.apply()" fixes nested async woes with a wink!
|
28 |
+
# π Run again - "asyncio.run(main())" now works inside Streamlitβs loop party!
|
29 |
+
# β²οΈ Time bender - "nest_asyncio.apply(); await asyncio.sleep(2)" bends time effortlessly!
|
30 |
|
31 |
+
pillow # PIL library
|
32 |
+
# πΌοΈ Pic power - "img = Image.open('cool.png')" unleashes image wizardry!
|
33 |
+
# π¨ Color swap - "img.convert('RGB')" transforms visuals like a pro!
|
34 |
+
# πΎ Save snap - "img.save('new.jpg')" locks your art in pixel glory!
|