python request get
时间: 2023-04-18 18:02:55 浏览: 88
request python
5星 · 资源好评率100%
Python中的requests库可以用来发送HTTP请求,其中get方法用于发送GET请求。使用get方法时,需要传入一个URL参数,可以是一个字符串或者一个URL对象。例如:
```python
import requests
response = requests.get('http://www.example.com')
print(response.text)
```
这段代码会向http://www.example.com发送一个GET请求,并将响应内容打印出来。如果需要传递参数,可以在URL中添加查询字符串,或者使用params参数传递一个字典。例如:
```python
import requests
params = {'key1': 'value1', 'key2': 'value2'}
response = requests.get('http://www.example.com', params=params)
print(response.text)
```
这段代码会向http://www.example.com发送一个带有查询字符串的GET请求,查询字符串为?key1=value1&key2=value2。
阅读全文