Update app.py
Browse files
app.py
CHANGED
|
@@ -70,7 +70,7 @@ def write_excel(data,date):
|
|
| 70 |
|
| 71 |
####################################################################################################################
|
| 72 |
import base64
|
| 73 |
-
writer = pd.ExcelWriter('07-253-b Estudio capacidad (con grafico)
|
| 74 |
df.to_excel(writer, index = False, header=True,encoding='utf-8')
|
| 75 |
with open(writer,'rb') as f:
|
| 76 |
b64 = base64.b64encode(f.read())
|
|
|
|
| 70 |
|
| 71 |
####################################################################################################################
|
| 72 |
import base64
|
| 73 |
+
writer = pd.ExcelWriter('07-253-b Estudio capacidad (con grafico).xls')
|
| 74 |
df.to_excel(writer, index = False, header=True,encoding='utf-8')
|
| 75 |
with open(writer,'rb') as f:
|
| 76 |
b64 = base64.b64encode(f.read())
|