Nikola299 commited on
Commit
a1c756a
1 Parent(s): f8839d4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -1,11 +1,10 @@
1
  import streamlit as st
 
2
 
3
  st.write("runningg")
4
 
5
- text = st.text_area("Enter text....")
6
 
7
 
8
  if st.button("Analyse"):
9
- print(text)
10
- text = """They've been suppressing the truth, but soon the awakened will rise up and expose it all!"""
11
  print(text)
 
1
  import streamlit as st
2
+ from streamlit_datalist import stDatalist
3
 
4
  st.write("runningg")
5
 
6
+ text = stDatalist("Enter text....", ["great", "cool", "neat"])
7
 
8
 
9
  if st.button("Analyse"):
 
 
10
  print(text)