SoDa12321 commited on
Commit
0c5315f
·
verified ·
1 Parent(s): fd99134

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -378,5 +378,11 @@ def collect_basic_info():
378
  urls, html_content = upload_files_to_transfer_sh(file_paths)
379
 
380
  print(f"Proposal saved as {filepath}. Uploaded to transfer.sh: {', '.join(urls)}")
 
 
 
 
 
 
381
 
382
  collect_basic_info()
 
378
  urls, html_content = upload_files_to_transfer_sh(file_paths)
379
 
380
  print(f"Proposal saved as {filepath}. Uploaded to transfer.sh: {', '.join(urls)}")
381
+
382
+ # Display each link in Streamlit using st.markdown
383
+ st.subheader("Uploaded File Links:")
384
+ for url in upload_urls:
385
+ st.markdown(f"[Click to download your file]({url})")
386
+
387
 
388
  collect_basic_info()