Update requirements.txt
Browse files- requirements.txt +8 -2
requirements.txt
CHANGED
@@ -2,6 +2,7 @@ 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!
|
@@ -28,7 +29,12 @@ nest-asyncio
|
|
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
|
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!
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
# 🖼️ Show off - "st.image(img)" flashes your pics with pizzazz!
|
6 |
|
7 |
asyncio
|
8 |
# ⏳ Async awaits - "await asyncio.sleep(1)" pauses without blocking your vibe!
|
|
|
29 |
# 🚀 Run again - "asyncio.run(main())" now works inside Streamlit’s loop party!
|
30 |
# ⏲️ Time bender - "nest_asyncio.apply(); await asyncio.sleep(2)" bends time effortlessly!
|
31 |
|
32 |
+
pillow
|
33 |
# 🖼️ Pic power - "img = Image.open('cool.png')" unleashes image wizardry!
|
34 |
# 🎨 Color swap - "img.convert('RGB')" transforms visuals like a pro!
|
35 |
+
# 💾 Save snap - "img.save('new.jpg')" locks your art in pixel glory!
|
36 |
+
|
37 |
+
streamlit-paste-button
|
38 |
+
# 📋 Paste magic - "result = paste_image_button('Paste')" snags clipboard images with flair!
|
39 |
+
# 🖼️ Show it off - "if result.image_data: st.image(result.image_data)" flashes pasted pics!
|
40 |
+
# 💾 Save it quick - "filename = save_pasted_image(result.image_data)" names and stores your art!
|