python requests get
时间: 2023-04-28 14:04:34 浏览: 97
Python中的requests库可以用来发送HTTP请求,其中get方法可以用来发送GET请求。使用get方法时,需要传入一个URL参数,可以是一个字符串或者一个URL对象。get方法会返回一个Response对象,其中包含了服务器返回的响应信息,包括状态码、响应头和响应体等。可以通过Response对象的属性和方法来获取这些信息。
相关问题
python requests.get().json用法,给我2个例子
好的,我可以回答您关于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~
python requests 例子
好的,以下是一个使用 Python requests 库发送 GET 请求的例子:
```python
import requests
response = requests.get('https://www.baidu.com')
print(response.text)
```
这个例子会向百度首页发送一个 GET 请求,并打印出响应内容。
阅读全文