Created
December 29, 2015 22:05
-
-
Save christopherkullenberg/cfb9ba4e9e41462dd6d4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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