我编写了一个代码,使用 json 和 requests 从 github 网站提取 JSON 对象:
#!/usr/bin/python
import json
import requests
r = requests.get('https://github.com/timeline.json') #Replace with your website URL
with open("a.txt", "w") as f:
for item in r.json or []:
try:
f.write(item['repository']['name'] + "\n")
except KeyError:
pass
这工作得很好。但是,我想使用 urllib2 和标准 json 模块做同样的事情。我怎么做?谢谢。