updated download tab
Browse files
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 |
-
|
92 |
-
|
|
|
|
|
|
|
|
|
|
|
|
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)
|