jcmachicao commited on
Commit
64ca597
1 Parent(s): 73bdb0e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -39,6 +39,6 @@ if file is not None:
39
  row.Respuesta + ' un ' + str(row.dif2) + '% más que la categoría ' + row.Cat_Comparada + '\n'
40
  texto_tot = texto_tot + '\n' + text
41
  st.write(texto_tot)
42
-
43
  # Download link for text file
44
- st.markdown(f'<a href="data:text/plain;charset=utf-8,{texto_tot}" download="result.txt">Download Text File</a>', unsafe_allow_html=True)
 
39
  row.Respuesta + ' un ' + str(row.dif2) + '% más que la categoría ' + row.Cat_Comparada + '\n'
40
  texto_tot = texto_tot + '\n' + text
41
  st.write(texto_tot)
42
+
43
  # Download link for text file
44
+ st.download_button(label='Descargar Reporte', data=texto_tot, file_name='reporte.txt', mime='text/plain')