当前位置:天才代写 > tutorial > Python教程 > Python urlencode 编码和url拼接

Python urlencode 编码和url拼接

2017-11-02 08:00 星期四 所属: Python教程 浏览:868

urlencode 挪用要领

urlencode的参数必需是Dictionary

import urllib
d = {'name1':'www.pythontab.com','name2':'bbs.pythontab.com'}
print urllib.urlencode(d)

输出:

name2=bbs.pythontab.com&name1=www.pythontab.com

相当于拼接两个url参数,这个用法雷同于PHP中的http_build_query(),这里就不大都PHP中怎么用了,有乐趣的本身去查一下。

urlencode 编码

函数urlencode不会改变传入参数的原始编码,也就是说需要在挪用之前将post或get参数的编码调解好。

问题:此刻模仿请求Google和baidu,由于baidu利用的是gb2312编码,google利用的是utf8编码,两个站点提交到URL中的中文参数的urlencode值是纷歧样,下面以”PythonTab中文网”为例:

# coding: UTF-8
str = u'PythonTab中文网'
str = str.encode('gb2312')
d = {'name':str}
q = urllib.urlencode(d)
print q

功效:

name=PythonTab%D6%D0%CE%C4%CD%F8

留意:urlencode的参数必需是Dictionary

其他用法

django中urlencode雷同,要领如下:

from django.utils.http import urlquote
a = urlquote('PythonTab中文网')
print a

获得汉字的GBK编码

urllib 转换字符串

其实可以用urllib的quote函数对URL中的中文举办转换,将中文转换成GBK的编码,获得的编码是切合URI尺度的URL。

>>> import urllib
>>> a = "PythonTab中文网"
>>> a
'PythonTab\xe4\xb8\xad\xe6\x96\x87\xe7\xbd\x91'
>>> urllib.quote(a)
'PythonTab%E4%B8%AD%E6%96%87%E7%BD%91'
>>>

 

    关键字:

天才代写-代写联系方式