发送特殊字符请求Python

时间:2015-01-25 19:37:55

标签: python python-requests

我想发送带有POST HTTP协议的文件。

Ma文件是torrent文件,我使用它来发送http://toolbelt.readthedocs.org/en/latest/user.html

这是我的代码

m = MultipartEncoder(
      fields={
            'torrent': ('torrent', open('mytest.torrent', 'r'), 'application/x-bittorrent'), 
            'name': str.encode('myname')
      }
)
u = request.post(uploadUrl, data=m, headers={'Content-Type': m.content_type})
print(u.text)
print(u.headers)
print(u)

但我没有这个错误: UnicodeDecodeError:' utf-8'编解码器不能解码位置366中的字节0x95:无效的起始字节

我该怎么办?感谢

0 个答案:

没有答案