File size: 347 Bytes
9b8ba0e |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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())
|