working with a json file in python code example
Example 1: json load from file python 3
import json
with open('file_to_load.json', 'r') as file:
data = json.load(file)
Example 2: how to download file in python
import urllib2
filedata = urllib2.urlopen('http://i3.ytimg.com/vi/J---aiyznGQ/mqdefault.jpg')
datatowrite = filedata.read()
with open('/Users/scott/Downloads/cat2.jpg', 'wb') as f:
f.write(datatowrite)