Skip to content

Instantly share code, notes, and snippets.

@christopherkullenberg
Created December 29, 2015 22:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save christopherkullenberg/cfb9ba4e9e41462dd6d4 to your computer and use it in GitHub Desktop.
Save christopherkullenberg/cfb9ba4e9e41462dd6d4 to your computer and use it in GitHub Desktop.
import json
from os import listdir
for filename in listdir("GU20151228json/"): #alla filer i en katalog
with open("GU20151228json/" + filename) as currentFile:
jsondata = json.load(currentFile)
print(jsondata)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment