Update app.py
Browse files
app.py
CHANGED
@@ -282,16 +282,16 @@ if submit and len(x) != 0:
|
|
282 |
|
283 |
with zipfile.ZipFile("allcsvs.zip", "w") as zipf:
|
284 |
if len(edccann)!=0:
|
285 |
-
zipf.write(
|
286 |
-
|
287 |
if len(edcrecep)!=0:
|
288 |
-
zipf.write(
|
289 |
if len(edchorm)!=0:
|
290 |
-
zipf.write(
|
291 |
if len(hormcan)!=0:
|
292 |
-
zipf.write(
|
293 |
if len(hormrecep)!=0:
|
294 |
-
zipf.write(
|
295 |
zipf.close()
|
296 |
|
297 |
for e in edccanbis:
|
|
|
282 |
|
283 |
with zipfile.ZipFile("allcsvs.zip", "w") as zipf:
|
284 |
if len(edccann)!=0:
|
285 |
+
zipf.write('edccan.csv')
|
286 |
+
|
287 |
if len(edcrecep)!=0:
|
288 |
+
zipf.write('edcrecep.csv')
|
289 |
if len(edchorm)!=0:
|
290 |
+
zipf.write('edchorm.csv')
|
291 |
if len(hormcan)!=0:
|
292 |
+
zipf.write('hormcan.csv')
|
293 |
if len(hormrecep)!=0:
|
294 |
+
zipf.write('hormrecep.csv')
|
295 |
zipf.close()
|
296 |
|
297 |
for e in edccanbis:
|