python post 发送application/x-www-form-urlencoded
时间: 2024-01-19 22:03:07 浏览: 230
Python中可以使用requests库来发送POST请求,其中data参数可以用来发送application/x-www-form-urlencoded数据。具体实现方法如下:
```
import requests
url = 'http://example.com/api'
data = {'key1': 'value1', 'key2': 'value2'}
response = requests.post(url, data=data)
```
其中,url是请求的路由,data是要发送的数据,response是服务器返回的响应。需要注意的是,data参数需要传入一个字典类型的数据,其中键值对的键是参数名,值是参数值。在发送application/x-www-form-urlencoded数据时,requests会自动将data参数转换为这种格式的数据。
阅读全文