Skip to content

Instantly share code, notes, and snippets.

import glob
import json
import os
for f in glob.glob('*/*.json'):
outlist = []
doc = json.load(open(f))
for app in doc:
out_stub = {}
out_stub['title'] = app['title']