python request的用法详解
时间: 2023-06-06 14:08:14 浏览: 143
python requests用法
好的,关于python request的用法,可以简单介绍一下。Python的requests库是一个基于HTTP协议来实现的网络请求库,该库能够轻松地发送HTTP/1.1和HTTP/2.0请求,并自动进行数据编码和解码,支持自定义头部和Cookie等功能。使用requests库可以轻松地模拟一些网页操作,比如登录和爬取内容等。
具体使用方法可以参考以下代码:
```
import requests
# 发送GET请求
response = requests.get('http://www.example.com')
print(response.text)
# 发送POST请求
data = {'name': 'John', 'age': 25}
response = requests.post('http://www.example.com', data=data)
print(response.text)
# 自定义请求头部
headers = {'User-Agent': 'Mozilla/5.0'}
response = requests.get('http://www.example.com', headers=headers)
print(response.text)
# Cookie的使用
cookies = {'session_id': 'abcd'}
response = requests.get('http://www.example.com', cookies=cookies)
print(response.text)
```
以上就是简单介绍了一下requests库的使用方法,希望能对你有帮助。
阅读全文