nlpblogs commited on
Commit
3ac9833
·
verified ·
1 Parent(s): 99e5912

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -11
app.py CHANGED
@@ -129,17 +129,7 @@ if st.button("Scrape Reviews"):
129
 
130
 
131
 
132
- buf = io.BytesIO()
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