File size: 332 Bytes
9b8ba0e
d801d73
 
9b8ba0e
 
 
 
f15e796
9b8ba0e
f15e796
1a62c90
9b8ba0e
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import streamlit as st
# from emoji import get_emoji
from emotions import get_emotion

st.title("I don't even know what this is yet")

name = st.text_input('Who are you?', 'Zeliboba')
text = st.text_area('Submit your stories', '''Random symbols''')

st.write('Here is your first text:', text)
st.write(get_emotion(text)['label'])