requests get json
时间: 2024-02-25 11:45:38 浏览: 49
ajax请求获取json
使用 Python 的 requests 库发送 GET 请求并获取 JSON 响应的示例代码如下:
```python
import requests
url = 'https://example.com/api/data'
response = requests.get(url)
if response.status_code == 200:
json_data = response.json()
print(json_data)
else:
print('Error:', response.status_code)
```
在上面的示例中,我们首先指定要请求的 URL,然后使用 requests 库中的 `get()` 方法发送 GET 请求并获取响应。如果响应的状态码为 200,则说明请求成功,并使用 `json()` 方法将响应内容解析为 JSON 格式的数据。最后,我们可以输出 JSON 数据或执行其他操作。如果响应的状态码不是 200,则说明请求失败,我们可以输出错误信息。
阅读全文