Update app.py
Browse files
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()
|