Skip to content

Instantly share code, notes, and snippets.

import json
import urllib2
sched = json.load(urllib2.urlopen("https://www.emfcamp.org/schedule.json"))
sorted_sched = {day:{} for day in ["05","06","07"]}
for item in sched:
day = item["start_date"].split()[0].split("-")[2]
if item["venue"] not in sorted_sched[day]: