如何使用 python 请求和处理 JSON?

发布于 2024-08-31 21:07:21 字数 143 浏览 6 评论 0原文

我正在尝试将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

梅倚清风 2024-09-07 21:07:21

对于任何涉及 URL 请求的内容,您可能需要查看 requests。特别是对于 JSON:

>>> import requests
>>> r = requests.get('https://github.com/timeline.json')
>>> r.json()
[{u'repository': {u'open_issues': 0, u'url': 'https://github.com/...

For anything with requests to URLs you might want to check out requests. For JSON in particular:

>>> import requests
>>> r = requests.get('https://github.com/timeline.json')
>>> r.json()
[{u'repository': {u'open_issues': 0, u'url': 'https://github.com/...
删除→记忆 2024-09-07 21:07:21

Python的标准库有 jsonurllib2 模块。

import json
import urllib2

data = json.load(urllib2.urlopen('http://someurl/path/to/json'))

Python's standard library has json and urllib2 modules.

import json
import urllib2

data = json.load(urllib2.urlopen('http://someurl/path/to/json'))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文