0
import httplib2
h = httplib2.Http(".cache")
resp, content = h.request("http://example.org/", "GET")

当我按照 urllib2 中的示例向 API 发出 GET 请求时,如何反序列化返回对象?

例如,我可能有类似的东西

'{"total_results": 1, "stat": "ok", "default_reviewers": [{"file_regex": ".*", "users": [], "links": {"self": {"href": "http://localhost:8080/api/default-reviewers/1/", "method": "GET"}, "update": {"href": "http://localhost:8080/api/default-reviewers/1/", "method": "PUT"}, "delete": {"href": "http://localhost:8080/api/default-reviewers/1/", "method": "DELETE"}}, "repositories": [], "groups": [], "id": 1, "name": "Default Reviewer"}], "links": {"self": {"href": "http://localhost:8080/api/default-reviewers/", "method": "GET"}, "create": {"href": "http://localhost:8080/api/default-reviewers/", "method": "POST"}}}'

但是,上面的响应是一个字符串。无论如何将其转换为列表以便于查询?这是进行 API 调用背后的正确想法(对此是新的):使用 HTTP API 发送请求,然后在不存在 API 包装器的情况下解析响应?

4

1 回答 1

1

使用json.loads()

>>> import json
>>> mydict = json.loads(content)
>>> print mydict
{u'total_results': 1, u'stat': u'ok', u'default_reviewers': [{u'file_regex': u'.*', u'users': [], u'links': {u'self': {u'href': u'http://localhost:8080/api/default-reviewers/1/', u'method': u'GET'}, u'update': {u'href': u'http://localhost:8080/api/default-reviewers/1/', u'method': u'PUT'}, u'delete': {u'href': u'http://localhost:8080/api/default-reviewers/1/', u'method': u'DELETE'}}, u'repositories': [], u'groups': [], u'id': 1, u'name': u'Default Reviewer'}], u'links': {u'self': {u'href': u'http://localhost:8080/api/default-reviewers/', u'method': u'GET'}, u'create': {u'href': u'http://localhost:8080/api/default-reviewers/', u'method': u'POST'}}}

至于它是否是正确的方法:当然。如果它有效,那为什么不呢?就个人而言,我会使用该requests模块:

>>> import requests
>>> resp = requests.get(URL)
>>> mydict = json.loads(resp.content)
于 2013-05-18T00:09:25.887 回答