Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 634 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 634 Bytes

usexif

Geographic Coordinate(longitude, latitude, and altitude) from raw EXIF data Build Status PyPI version

Install

pip install usexif

Example

import usexif
ret = usexif.fromfile('image/path/here.jpg')

ret['longitude']
# 126.16250277777779

ret['latitude']
# 34.36355833333334

ret['altitude']
# 3.0

ret['taken_date']
# datetime.datetime(2016, 4, 18, 10, 41, 6)

Dependencies