可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
I'd like to know the equivalent of this curl command in pycurl:
curl --data-binary @binary_data_file.bin 'http://server/myapp/method'
Note: The above curl statement uses the POST method. I need to use this for compatibility with my server script.
回答1:
The requests
library is meant to keep things like this simple:
import requests r = requests.post('http://server/myapp/method', data={'aaa': 'bbb'})
Or depending on how the receiving end expects data:
import requests r = requests.post('http://server/myapp/method', data=file('binary_data_file.bin','rb').read())
回答2:
From libcurl, setopt(...) try this option:
CURLOPT_POSTFIELDSIZE
If you want to post data to the server without letting libcurl do a strlen() to measure the data size, this option must be used. When this option is used you can post fully binary data, which otherwise is likely to fail. If this size is set to -1, the library will use strlen() to get the size.
http://curl.haxx.se/libcurl/c/curl_easy_setopt.html#CURLOPTPOSTFIELDSIZE