You are viewing a single comment's thread from:

RE: Extracting EXIF (Meta)Data From Images With Python

in #utopian-io7 years ago

Hmm. I feel like it should be possible to extract EXIF metadata from an image URL. The exifread.process_file source code seems to expect a bytestream file-like object. If you're using requests, did you try wrapping response.content in io.BytesIO before passing it to exifread.process_file?

Sort:  

I did not, will look into at a later time. Thanks for the tip