从互联网python中读取json文件

时间:2018-06-14 01:07:49

标签: python json

我目前正在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)

但它不起作用...... 有没有人知道如何从网上阅读这个文件?

由于

0 个答案:

没有答案