yashkens commited on
Commit
f15e796
1 Parent(s): 129f758

use text in emoji

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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
- texts = st.text_area('Submit your stories', '''Insert 10 stories here separated by two empty lines, please!''')
8
 
9
- st.write('Here is your first text:', texts.split('\n\n')[0])
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