-1

我编写了一个代码,使用 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 模块做同样的事情。我怎么做?谢谢。

4

1 回答 1

0

只需使用urlopen下载数据并使用 Python 的json模块进行解析:

import json
import urllib2
r = urllib2.urlopen('https://github.com/timeline.json')

with open("a.txt", "w") as f:
    for item in json.load(r) or []:
        try:
            f.write(item['repository']['name'] + "\n") 
        except KeyError:
            pass 
于 2012-10-01T15:50:06.753 回答