manika07 commited on
Commit
f1b215c
·
1 Parent(s): 9037336

updated download tab

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -88,5 +88,10 @@ st.sidebar.text("Download the tagged results as a CSV file.")
88
  if st.sidebar.button("Download"):
89
  csv = df.to_csv(index=False)
90
  b64 = base64.b64encode(csv.encode()).decode()
91
- href = f'<a href="data:file/csv;base64,{b64}" download="results.csv">Download csv file</a>'
92
- st.markdown(href, unsafe_allow_html=True)
 
 
 
 
 
 
88
  if st.sidebar.button("Download"):
89
  csv = df.to_csv(index=False)
90
  b64 = base64.b64encode(csv.encode()).decode()
91
+
92
+
93
+ # Set the Content-Disposition header to force the download
94
+ headers = {"Content-Disposition": "attachment; filename=results.csv"}
95
+
96
+ # Use `st.download_file()` to download the file
97
+ st.download_file(b64, "results.csv", headers=headers)