我目前正在python中读取一个json文件:
with open('data.json') as f:
data = json.load(f)
但我想通过网络(https://raw.githubusercontent.com/lsv/fifa-worldcup-2018/master/data.json)
阅读这个json文件我试过这样做:
response = urllib2.urlopen('https://raw.githubusercontent.com/lsv/fifa-worldcup-2018/master/data.json')
html = response.read()
with open(html) as ff:
data2 = json.load(ff)
但它不起作用...... 有没有人知道如何从网上阅读这个文件?
由于