streamlit-ext icon indicating copy to clipboard operation
streamlit-ext copied to clipboard

Is it possible to support download for PDF and docx as well?

Open Santhosh26 opened this issue 2 years ago • 1 comments

Hi,

Thanks, this really saves a lot of time for me. Would you be able to extend the extension to offer PDF and word versions as well?

Santhosh26 avatar Nov 06 '23 07:11 Santhosh26

It already support these files.

import streamlit as st
import streamlit_ext as ste

with open("abc.pdf", "rb") as f:
    content = f.read()

ste.download_button("Download", content, "hello.pdf")

PaleNeutron avatar Nov 06 '23 08:11 PaleNeutron