python requests 例子
时间: 2023-11-09 09:02:04 浏览: 74
python requests
好的,以下是一个使用 Python requests 库发送 GET 请求的例子:
```python
import requests
response = requests.get('https://www.baidu.com')
print(response.text)
```
这个例子会向百度首页发送一个 GET 请求,并打印出响应内容。
阅读全文