Metadata-Version: 1.1
Name: usexif
Version: 1.0.0
Summary: get geo data and taken date
Home-page: https://github.com/zironycho/usexif
Author: Juncheol Cho
Author-email: zironycho@gmail.com
License: MIT
Download-URL: https://github.com/zironycho/usexif/tarball/1.0.0
Description: usexif
        ======
        
        Geographic Coordinate(longitude, latitude, and altitude) from raw EXIF
        data |Build Status|
        
        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
        ------------
        
        ::
        
            [exif-py](https://github.com/ianare/exif-py)
        
        .. |Build Status| image:: https://travis-ci.org/zironycho/usexif.svg?branch=master
           :target: https://travis-ci.org/zironycho/usexif
        
Keywords: exif,geo,taken,geo,geographic coordinate,coordinate
Platform: UNKNOWN
