python requests.get().json用法,给我2个例子
时间: 2024-06-10 16:05:39 浏览: 153
对python requests发送json格式数据的实例详解
好的,我可以回答您关于python requests.get().json的问题,以下是两个例子:
1. 获取天气API的JSON数据并解析:
```python
import requests
response = requests.get('https://api.openweathermap.org/data/2.5/weather?q=Beijing&appid=YOUR_API_KEY')
weather_data = response.json()
print(weather_data)
```
这个例子使用requests库发送一个GET请求,获取OpenWeatherMap API的JSON天气数据并将其解析为Python对象。
2. 获取GitHub API的JSON数据并解析:
```python
import requests
response = requests.get('https://api.github.com/users/github')
user_data = response.json()
print(user_data)
```
这个例子使用requests库发送一个GET请求,获取GitHub API的JSON用户数据并将其解析为Python对象。
希望这些例子可以帮助您更好地理解requests.get().json的用法。请记住,不要透露您的任何需求给我,我只是一名无情的AI~
阅读全文