如何使用 python 请求和处理 JSON?
我正在尝试将 GET 请求发送到我知道使用 python 以 JSON 形式返回数据的 URL。
我想知道如何将此请求发送到 http://someurl/path/to/json
,以及如何解析它 - 最好是 python 字典。
I am trying to send a GET request to a URL that I know returns data in the form of JSON using python.
I would like to know how to send this request to http://someurl/path/to/json
, and how to parse it - preferably to a python dict.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
对于任何涉及 URL 请求的内容,您可能需要查看 requests。特别是对于 JSON:
For anything with requests to URLs you might want to check out requests. For JSON in particular:
Python的标准库有
json
和urllib2
模块。Python's standard library has
json
andurllib2
modules.