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') texts = st.text_area('Submit your stories', '''Insert 10 stories here separated by two empty lines, please!''') st.write('Here is your first text:', texts.split('\n\n')[0]) st.write(get_emoji())