Quick actions

cmd+k|ctrl+k

Navigation

Languages

Read json data

Snippet info

Language

Python

Visibility

public

Author

petter

Created

2015-06-20T22:58:22Z

Updated

2015-06-20T23:29:18Z

import json

with open("data.json") as f:
    data = json.loads(f.read())
print(data)
INFO