Search

Connectors

Contact support

Helpdesk portal

Manual file upload & download

Manual file upload & download

Import Excel file into table

Here’s an example Streamlit app to upload an Excel file, the data is imported into a table in Peliqan:

Upload files and store on AWS S3

Here’s an example allowing users to manually upload files using a Streamlit app. The uploaded files are stored on an AWS S3 bucket:

Download file

Example adding a download button in a Streamlit app, to download a file:

st.download_button(
    label = "Download PDF",
    data = file_bytes,
    file_name = f"myfile.pdf",
    mime = "application/pdf"
)