用REQUESTS 模块 post请求 接收数据后等待3秒钟回传字符串“OK”
时间: 2024-06-08 17:08:19 浏览: 73
Python3 利用requests 库进行post携带账号密码请求数据的方法
可以使用以下代码实现:
```python
import requests
import time
# 设置请求的URL和参数
url = 'http://example.com'
data = {'key': 'value'}
# 发送POST请求并等待3秒钟
response = requests.post(url, data=data)
time.sleep(3)
# 回传字符串“OK”
return_text = 'OK'
# 发送回传请求
requests.post(url, data=return_text)
```
请替换`url`和`data`变量的值为你实际的请求URL和参数。
阅读全文