我尝试将php api代码转换为python:
这是php代码:
// Variables to Post
$local_file = "/path/to/file";
$file_to_upload = array(
'file'=>'@'.$local_file,
'convert'=>'1',
'user'=>'YOUR_USERNAME',
'password'=>'YOUR_PASSWORD'
);
// Do Curl Request
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,'http://example.org/dapi.php');
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $file_to_upload);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result=curl_exec ($ch);
curl_close ($ch);
// Do Stuff with Results
echo $result;
这是我的Python代码:
url = 'http://example.org/dapi.php'
file ='/path/to/file'
datei= open(file, 'rb').read()
values = {'file' : datei ,
'user' : 'username',
'password' : '12345' ,
'convert': '1'}
data = urllib.urlencode(values)
req = urllib2.Request(url, data)
response = urllib2.urlopen(req)
the_page = response.read()
print the_page
它上传我的文件,但响应是一个错误,所以我的python代码必须出错。但我看不出自己的错误。
答案 0 :(得分:1)
使用multipart / form-data编码上传文件没有简单的方法。 但是,您可以使用一些代码段:
[http://pymotw.com/2/urllib2/index.html#module-urllib2] [http://code.activestate.com/recipes/146306-http-client-to-post-using-multipartform-data/]
更简单的方法是使用库。 我使用的一些好的库是:
答案 1 :(得分:1)
在尝试了很多机会之后。我使用pycurl找到了我的解决方案:
import pycurl
import cStringIO
url = 'http://example.org/dapi.php'
file ='/path/to/file'
print "Start"
response = cStringIO.StringIO()
c = pycurl.Curl()
values = [('file' , (c.FORM_FILE, file)),
('user' , 'username'),
('password' , 'password'),
('convert', '1')]
c.setopt(c.POST, 1)
c.setopt(c.URL,url)
c.setopt(c.HTTPPOST, values)
#c.setopt(c.VERBOSE, 1)
c.setopt(c.WRITEFUNCTION, response.write)
c.perform()
c.close()
print response.getvalue()
print "All done"
答案 2 :(得分:0)
您的问题在于此行:datei= open(file, 'rb').read()
。对于urllib2.Request上传文件,它需要一个实际的文件对象,因此该行应为:datei= open(file, 'rb')
。 open(...).read()
返回str
而不是文件对象。