def whateveryoumaycall():
    content = fetch_the_resource()
    #set the correct headers, such as 
    response.headers['Content-Type'] = 'blablabla'
    response.headers['Content-Length'] = 31298312098312
    ......
    return content

response.stream() accepts a file-like object, so you may do

from cStringIO import StringIO
def whateveryoumaycall():
    content = fetch_the_resource()
    f = StringIO()
    f.write(content)
    f.seek(0)
    #set the correct headers, such as 
    response.headers['Content-Type'] = 'blablabla'
    response.headers['Content-Length'] = 31298312098312
    .....
    return response.stream(content, ....)

On Tuesday, August 19, 2014 8:40:07 AM UTC+2, Manuele wrote:
>
> Il 18/08/14 15:24, Niphlod ha scritto: 
> > StringIO. 
> Can you be more explicit? Please! 
>
> Thanks a lot 
>
>     Manuele 
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to