Geolocating a Folder of Images with Python

I’m not sure how useful this will be, but as I recently built it in another language (I plan on blogging that soon as well), I thought I’d take a stab at building it in Python. Given a folder of images, can I use Python to grab the Exif information and then using that, figure out where the photos were taken using a reverse geocoding service? Here’s what I built.
First – Get the Images
Ok, the first step is simple, just get a list of images from a directory:
INPUT = "./sources" files = os.listdir(INPUT) for file in files: print(file)
Woot! I’m a Python Master!
Get the Exif info
For the next step, I knew I needed to get the Exif info. For that I used... more →
Posted in: JavaScript