On 6/22/06, Scott Finnie <[EMAIL PROTECTED]> wrote:
>
> Just until they've gone in the response.


Your best bet then is probably to use the tempfile module, to generate
guaranteed unique filenames. Then just clean them up on occasion.

You might also be able to pull off a StringIO based solution, The
advantage to that would be that the StringIO object would get GC'ed,
so you wouldn't have to clean it yourself. However, I'm not quite sure
how you'd render that in a template without an actual filename. My
guess is you can't, as the browser would parse the HTML, and see a
<img ...>.

Maybe an AJAX solution would work with StringIO.

Jay P.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to