Skip to content

Instantly share code, notes, and snippets.

@AstraLuma
Created October 18, 2014 17:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AstraLuma/890ce225276ab4c43af8 to your computer and use it in GitHub Desktop.
Save AstraLuma/890ce225276ab4c43af8 to your computer and use it in GitHub Desktop.
Make a thumbnail gallery from a Lytro album.
#!/usr/bin/python3
import glob
import os.path
with open("gallery.html", 'w') as gallery:
for fn in glob.glob("*/thumbnail.jpg"):
gallery.write("<img src='{}' title='{}'>".format(fn, os.path.dirname(fn)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment