python crawler requests library post request
import requests
# 定义要发送的POST请求的URL
url = 'http://httpbin.org/post'
# 定义要发送的数据
data = {'key': 'value'}
# 发送POST请求
response = requests.post(url, data=data)
# 打印响应内容
print(response.text)
这段代码使用了Python的requests库来发送一个POST请求到指定的URL,并打印出响应内容。在这个例子中,我们发送了一个包含键值对的数据,这个数据通常是以表单形式提交的。响应内容会显示请求的相关信息,包括请求头、请求的URL、发送的数据等。
评论已关闭