Skip to content

jpchauvel/waldo-exif-challenge

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Waldo's challenge

To download all image files just execute ./exif.py. It'll save the image filename and the exif tags, as key/value pair respectively in a sqlite3 files.db.

The schema of the database is the following:

create table photos (
id integer primary key autoincrement,
filename text not null,
exif text not null);

So, if you need to query the exif value of a file, you just have to provide an image filename in the where clause of a select sentence.

About

Using any language and data-store of your choice, write an application that reads a set of photos from a network store (S3), parses the EXIF data from the photos and indexes the EXIF key/value pairs into a query-able store by unique ph

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages