Skip to content

Instantly share code, notes, and snippets.

View marlonmarcello's full-sized avatar

Marlon Ugocioni Marcello marlonmarcello

View GitHub Profile
@marlonmarcello
marlonmarcello / organize-photos.py
Created March 31, 2014 06:34 — forked from cliss/organize-photos.py
Photo management script. This script will copy photos from "sourceDir" into a tree the script creates, with folders representing month and years, and photo names timestamped. Completely based on the work of the amazing Dr. Drang; see here: http://www.leancrew.com/all-this/2013/10/photo-management-via-the-finder/. Casey Liss did more edits as you…
#!/usr/bin/python
import sys
import os, shutil
import subprocess
import os.path
import json
from datetime import datetime
######################## Functions #########################