python使用海报POST一个StringIO

时间:2013-07-15 08:05:27

标签: python post stringio poster

情况如下:

我使用PIL处理图像,然后将其保存到StringIO对象。 现在,我想通过海报发布StringIO对象。 但是,我无法在请求中获取图像.FILES字典。 我用Google搜索了几个小时,我发现了这个问题, python : post data within stringIO through poster? 我试过但不工作。

所以,我阅读了海报源代码,发现它试图获得类似文件的对象参数的'name'属性,但似乎StringIO对象没有'name'属性,所以,文件名和文件类型是无

if hasattr(value, 'read'):
    # Looks like a file object
    filename = getattr(value, 'name', None)
    if filename is not None:
        filetype = mimetypes.guess_type(filename)[0]
    else:
        filetype = None

    retval.append(cls(name=name, filename=filename,
        filetype=filetype, fileobj=value))
else:
    retval.append(cls(name, value))

所以,我指定了StringIO对象的名称属性,它似乎工作正常。

im_tmp = Image.open(StringIO(bits))
//bits: the binary chars of a image
im_res = ImageAPI.process(im_tmp, mode, width, height)
//ImageAPI: a class that use PIL methods to process image
output = StringIO()
im_res.save(output, format='PNG')
output.name = 'tmp.png'
//I add above code and it works
call(url_str=url, file_dict={'file':output})
//call: package of poster

我做对了吗?什么是通过海报发布StringIO对象的正确方法?

1 个答案:

答案 0 :(得分:0)

根据this commit,将名称设为可选是显式以支持传入StringIO对象,但正如您发现的那样,然后跳过检测mime类型和默认值改为text/plain

那么你的方法是完全正确的。只需将.name属性设置为goad poster即可检测mime类型。

另一种方法是使用更好的库来发布到网上。我建议您查看requests,其中supports multipart POSTing of files开箱即用,包括设置文件名的方法。如果传入,mimetype将基于该显式文件名。