robertou2 commited on
Commit
e27ea1b
·
1 Parent(s): 9fbd666

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
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
- search_words = st.text_input('Introduzca el termino o usuario para analizar y pulse el check ')
68
- number_of_tweets = st.number_input('Introduzca número de twweets a analizar. Máximo 50', 0,50,10)
 
 
69
  termino=st.checkbox('Término')
70
  usuario=st.checkbox('Usuario')
71
- submit_button = st.form_submit_button(label='Analizar')
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"