Update app.py
Browse files
app.py
CHANGED
@@ -1,11 +1,10 @@
|
|
1 |
import streamlit as st
|
|
|
2 |
|
3 |
st.write("runningg")
|
4 |
|
5 |
-
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)
|