Python3 处理 URL 编码

By 刘志军 , 2019-05-13, 分类: qa

编码 , url

URL 链接只能包含ASCII字符,如果有中文等非ascii 字符,就要先编码,例如

https://www.ershicimi.com/search?q=程序员

浏览器最自动转换成:

https://www.ershicimi.com/search?q=%E7%A8%8B%E5%BA%8F%E5%91%98

在Python中,如将转换呢? 可以使用 urllib.parse 模块中的方法 quote

import urllib.parse

>>> urllib.parse.quote("https://www.ershicimi.com/search?q=程序员")
'https%3A//www.ershicimi.com/search%3Fq%3D%E7%A8%8B%E5%BA%8F%E5%91%98'

默认是用 UTF-8 编码进行转换, 因为“程序员”三个字对应的 UTF8 编码是 e7a88b e5ba8f e59198

反过来,如果要将URL解码,可以使用 unquote 方法

>>> url = 'https%3A//www.ershicimi.com/search%3Fq%3D%E7%A8%8B%E5%BA%8F%E5%91%98'
>>> urllib.parse.unquote(url)
'https://www.ershicimi.com/search?q=程序员'

当然,编码和解码的过程中,是可以自己指定编码格式的,例如你要使用GBK来编码就更短些。

>>> urllib.parse.quote("https://www.ershicimi.com/search?q=程序员", encoding='gbk')
'https%3A//www.ershicimi.com/search%3Fq%3D%B3%CC%D0%F2%D4%B1'

关注公众号「Python之禅」,回复「1024」免费获取Python资源

python之禅

猜你喜欢

2017-03-26
Python3 是如何解决棘手的字符编码问题的?
2017-03-20
Python 编码为什么那么蛋疼?
2017-03-19
Python入门最容易犯的错误
2017-02-08
Python 编码错误的本质原因
2016-09-18
分析urllib.unquote乱码的原因
2016-08-03
PYTHON编码的前世今生
2014-02-14
理解Python字符集编码
2019-05-16
python 处理 字典转换成URL查询参数