Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -64,11 +64,13 @@ st.markdown('Una vez analizados los tweets, los que resulten sexistas se pueden
|
|
64 |
|
65 |
def run():
|
66 |
with st.form(key='Introduzca Texto'):
|
67 |
-
|
68 |
-
|
|
|
|
|
69 |
termino=st.checkbox('Término')
|
70 |
usuario=st.checkbox('Usuario')
|
71 |
-
submit_button =
|
72 |
error=False
|
73 |
if submit_button:
|
74 |
date_since = "2020-09-14"
|
|
|
64 |
|
65 |
def run():
|
66 |
with st.form(key='Introduzca Texto'):
|
67 |
+
col,buff1, buff2 = st.beta_columns([2,2,1])
|
68 |
+
#col.text_input('smaller text window:')
|
69 |
+
search_words = col.text_input('Introduzca el termino o usuario para analizar y pulse el check ')
|
70 |
+
number_of_tweets = col.number_input('Introduzca número de twweets a analizar. Máximo 50', 0,50,10)
|
71 |
termino=st.checkbox('Término')
|
72 |
usuario=st.checkbox('Usuario')
|
73 |
+
submit_button = col.form_submit_button(label='Analizar')
|
74 |
error=False
|
75 |
if submit_button:
|
76 |
date_since = "2020-09-14"
|