StoryTime / app.py
yashkens's picture
use text in emoji
f15e796
raw
history blame
286 Bytes
import streamlit as st
from emoji import get_emoji
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_emoji(text))