katharinaost commited on
Commit
7770418
·
1 Parent(s): b35a93b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -1,4 +1,10 @@
1
  import streamlit as st
 
 
2
 
3
- x = st.slider('Select a value')
4
- st.write(x, 'squared is', x * x)
 
 
 
 
 
1
  import streamlit as st
2
+ import spacy
3
+ import spacy_streamlit
4
 
5
+ #nlp = spacy.load('la_core_web_lg')
6
+
7
+
8
+ txt = st.text_area('Enter text: ')
9
+
10
+ st.write('The entered text is:',txt)