content = image_or_file_object.data
For large files, data is a linked list of chunked content to avoid memory
bloat.
If you want the whole file and screw the memory bloat you can str it:
content = str(image_or_file_object.data)
--
Andy McKay
www.agmweb.ca