Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -20,17 +20,17 @@ def main():
|
|
20 |
if submit:
|
21 |
with st.spinner('Wait for it...'):
|
22 |
df=create_docs(pdf)
|
23 |
-
st.write(df
|
24 |
|
25 |
-
data_as_csv= df.to_csv(index=False).encode("utf-8")
|
26 |
|
27 |
-
st.download_button(
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
)
|
34 |
st.success("Hope I was able to save your time❤️")
|
35 |
|
36 |
|
|
|
20 |
if submit:
|
21 |
with st.spinner('Wait for it...'):
|
22 |
df=create_docs(pdf)
|
23 |
+
st.write(df)
|
24 |
|
25 |
+
# data_as_csv= df.to_csv(index=False).encode("utf-8")
|
26 |
|
27 |
+
# st.download_button(
|
28 |
+
# "Download data as CSV",
|
29 |
+
# data_as_csv,
|
30 |
+
# "benchmark-tools.csv",
|
31 |
+
# "text/csv",
|
32 |
+
# key="download-tools-csv",
|
33 |
+
# )
|
34 |
st.success("Hope I was able to save your time❤️")
|
35 |
|
36 |
|