Update app.py
Browse files
app.py
CHANGED
@@ -129,17 +129,7 @@ if st.button("Scrape Reviews"):
|
|
129 |
|
130 |
|
131 |
|
132 |
-
|
133 |
-
with zipfile.ZipFile(buf, "w") as myzip:
|
134 |
-
myzip.writestr("Summary of the results.csv", result.to_csv(index=False))
|
135 |
-
|
136 |
-
st.download_button(
|
137 |
-
label="Download zip file",
|
138 |
-
data=buf.getvalue(),
|
139 |
-
file_name="zip_file.zip",
|
140 |
-
mime="application/zip",
|
141 |
-
)
|
142 |
-
|
143 |
|
144 |
|
145 |
|
|
|
129 |
|
130 |
|
131 |
|
132 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
|
134 |
|
135 |
|