如果网站的响应返回 XML/JSON,我如何从该网站下载信息?
Python3 有内置方法可以做到这一点吗?任何指导都会很棒! :)
相关网站会公开其所有信息,甚至为您提供可供使用的 API 密钥。
Does Python3 have a built in method to do this? Any guidance at all would be great! :)
The website in question exposes all of its information and even gives you an API key to use.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Python 包含一个
json
模块,可以执行以下操作为您转换。要从网站下载实际数据,请使用urllib.request< /代码>
。
Python includes a
json
module that can do the conversion for you. For downloading the actual data from the web site, useurllib.request
.