对Python请求的CURL语句

时间:2017-07-13 14:16:59

标签: python curl python-requests

我正在尝试将CURL语句转换为python请求代码而服务器没有响应

我有的CURL命令是

curl --user user:pass --anyauth --user-agent 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)' -F "archive=" -F "mysubmit=Screenshot" -F "passwd=" 172.xx.xx.xx/plug

当我跑过命令时,我得到了理想的结果。现在我试图将此CURL命令转换为Python Requests lib代码。从同一主题的请求库文档和Stackoverflow问题中引用

这就是我正在尝试的

>>> import requests
>>> from requests.auth import HTTPDigestAuth
>>> data = {'archive': '', 'mysubmit': 'Screenshot'}
>>> headers = {'User-Agent': 'Mozilla/5.0'}
>>> resp = requests.post('http://172.18.5.57/plugin_inspect',auth=HTTPDigestAuth('rokudev','developer'), headers=headers, data=data)

当我发布request.post时,我没有收到服务器的任何响应。我做错了什么,我无法弄清楚是什么

有关需要改变的内容的任何建议吗?

由于

0 个答案:

没有答案