Skip to content

A python library for interacting with the exiftool command-line utility.

Notifications You must be signed in to change notification settings

girasquid/Exiftool

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

'exiftool' is a simple library for interfacing with the command-line tool 'exiftool'(http://www.sno.phy.queensu.ca/~phil/exiftool/).

At the moment, all it does is parse EXIF data - you use it like so:

>>> import exiftool
>>> f = open('photo.jpg')
>>> exiftool.parse_exif(f)
{'MIMEType': 'image/jpeg', 'YResolution': '1', 'ResolutionUnit': 'None', 'ImageSize': '640x480', 'ExifImageWidth': '640', 'FileType': 'JPEG', 'ImageWidth': '640', 'CurrentIPTCDigest': '717964420d38c85f3238d694cec521ca', 'ColorComponents': '3', 'BitsPerSample': '8', 'JFIFVersion': '1.01', 'ExifByteOrder': 'Big-endian (Motorola, MM)', 'ExifImageHeight': '480', 'XResolution': '1', 'CodedCharacterSet': 'UTF8', 'Keywords': 'Photo Booth', 'EncodingProcess': 'Baseline DCT, Huffman coding', 'ImageHeight': '480', 'ExifToolVersion': '7.86', 'YCbCrSubSampling': 'YCbCr4:2:0 (2 2)', 'ApplicationRecordVersion': '2'}

About

A python library for interacting with the exiftool command-line utility.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages