use text in emoji
Browse files
app.py
CHANGED
@@ -4,9 +4,9 @@ from emoji import get_emoji
|
|
4 |
st.title("I don't even know what this is yet")
|
5 |
|
6 |
name = st.text_input('Who are you?', 'Zeliboba')
|
7 |
-
|
8 |
|
9 |
-
st.write('Here is your first text:',
|
10 |
-
st.write(get_emoji())
|
11 |
|
12 |
|
|
|
4 |
st.title("I don't even know what this is yet")
|
5 |
|
6 |
name = st.text_input('Who are you?', 'Zeliboba')
|
7 |
+
text = st.text_area('Submit your stories', '''Random symbols''')
|
8 |
|
9 |
+
st.write('Here is your first text:', text)
|
10 |
+
st.write(get_emoji(text))
|
11 |
|
12 |
|