Python发送Http请求时,中文乱码问题的解决方法

来源:互联网 发布:乐视无线显示网络异常 编辑:程序博客网 时间:2024/05/22 15:56

解决方法

先encode再quote。

原理

msg.encode('utf-8')是解决中文乱码问题。

quote():假如URL的 name 或者 value 值中有『&』、『%』或者『=』等符号,就会有问题。所以URL中的参数字符串也需要把『&=』等符号进行编码,quote()就是对参数字符串中的『&=%』等符号进行编码。

例子

# -*- coding: UTF-8 -*-# python2.7from urllib import quoteimport requestsdef httpGet(sUrl):    header = {}    try:        response=requests.get(sUrl, headers=header)        sText = response.text        return sText    except BaseException:        print BaseException            def demo(msg):    sEncodeMsg = quote(msg.encode('utf-8'))    url = 'http://www.youdao.com/w/eng/' + sEncodeMsg    print httpGet (url)    demo(u'90%的数据') 




原创粉丝点击