hacpdsae2023 commited on
Commit
94f8c57
·
1 Parent(s): 3152fdc

Adding download option

Browse files
Files changed (1) hide show
  1. app.py +8 -0
app.py CHANGED
@@ -48,4 +48,12 @@ if uploaded_file1 is not None and uploaded_file2 is not None:
48
 
49
  st.write(df1)
50
 
 
 
 
 
 
 
 
 
51
 
 
48
 
49
  st.write(df1)
50
 
51
+ st.download_button(
52
+ "Press to Download",
53
+ csv,
54
+ "output_file.csv",
55
+ "text/csv",
56
+ key='download-csv'
57
+ )
58
+
59