-
Hi, guys. I'm trying to make a web interface to process excel files using pandas, doing some transformation in this files. However I can't return the final file to users. I think it's possible to copy the file to "static" folder and returns a link to users, but what I'm looking for is something like "send_file" function from Flask. Any tips on how to do this? Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@pramos84 you can use the |
Beta Was this translation helpful? Give feedback.
@pramos84 you can use the
stream_file
fromemmett.helpers
(https://github.com/emmett-framework/emmett/blob/master/emmett/helpers.py#L36). Please open an issue to add this into the documentation.