jupyter / declarativewidgets

[RETIRED] Jupyter Declarative Widget Extension
http://jupyter.org/declarativewidgets/docs.html
Other
120 stars 38 forks source link

How to realize a `Download csv` button? #530

Closed osdf closed 7 years ago

osdf commented 7 years ago

Hello there.

I'd like to allow the downloading (e.g. by pressing a paper-button) of some csv files (or actually, any type of file) that were loaded in the notebook or generated while the user works with the widgets. How could that be realized?

Thank you!

peller commented 7 years ago

You could try something like this http://stackoverflow.com/questions/8310657/how-to-create-a-dynamic-file-link-for-download-in-javascript and bind your new button to a dataframe source.

osdf commented 7 years ago

@peller Thank you, that's what I'll try!