Python cherrypy.lib.static.serve_fileobj() Examples
The following are 1
code examples of cherrypy.lib.static.serve_fileobj().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
cherrypy.lib.static
, or try the search function
.
Example #1
Source File: server.py From spyre with MIT License | 6 votes |
def download(self, **args): args = self.clean_args(args) filepath = self.getDownload(args) if type(filepath).__name__ == "str": return serve_file(filepath, "application/x-download", "attachment", name='data.csv') if type(filepath).__name__ == "instance": file_obj = serve_fileobj( filepath.getvalue(), "application/x-download", "attachment", name='data.csv' ) return file_obj if type(filepath).__name__ == "StringIO": file_obj = serve_fileobj( filepath.getvalue().encode('utf-8'), "application/x-download", "attachment", name='data.csv' ) return file_obj else: return "error downloading file. filepath must be string of buffer"