Skip to content

Instantly share code, notes, and snippets.

@richstoner
Created July 29, 2014 20:27
Show Gist options
  • Save richstoner/f43e6beaa3e3834a79bf to your computer and use it in GitHub Desktop.
Save richstoner/f43e6beaa3e3834a79bf to your computer and use it in GitHub Desktop.
file_generator for l120 of rest.py
elif isinstance(val, cherrypy.lib.file_generator):
# if endpoint returned a file generator, return it directly
#
# Example
#
# > from cherrypy.lib import file_generator
# > cherrypy.response.headers['Content-Type'] = "image/png"
# > png_handle = open(file_path, 'rb')
# > return file_generator(png_handle)
#
#
return val
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment