python语言写一段发包代码
时间: 2023-05-25 09:06:25 浏览: 96
python 表白代码打包
以下是一段使用Python发送HTTP请求的示例代码:
```
import requests
# 设置请求头
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36'}
# 设置请求数据
data = {'key1': 'value1', 'key2': 'value2'}
# 发送POST请求
response = requests.post('http://www.example.com', headers=headers, data=data)
# 输出请求结果
print(response.text)
```
这段代码使用requests库发送一个POST请求,其中设置了请求头和请求数据,发送到了http://www.example.com,并输出了请求结果。
阅读全文