Python中的HTTP请求和JSON解析

Python中的HTTP请求和JSON解析,第1张

Python中的HTTP请求和JSON解析

我建议使用很棒的请求库:

import requestsurl = 'http://maps.googleapis.com/maps/api/directions/json'params = dict(    origin='Chicago,IL',    destination='Los+Angeles,CA',    waypoints='Joplin,MO|Oklahoma+City,OK',    sensor='false')resp = requests.get(url=url, params=params)data = resp.json() # Check the JSON Response Content documentation below

JSON响应内容:https :
//requests.readthedocs.io/en/master/user/quickstart/#json-response-
content



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5174750.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存