Python 中的 url 编码(以%开始的编码)

Python 中的 url 编码(以%开始的编码)_第1张图片

今天在看一个 post 请求的时候,发现中文内容被编码成了这种以 ‘%’ 开头的形式

但是又不知道这到底是啥编码格式

找了半天发现是 url 编码

使用 Python 中的 urllib 中的包即可处理

Python 中的 url 编码(以%开始的编码)_第2张图片

In [14]: a_str = '中文'

In [15]: urllib.parse.quote(a_str)
Out[15]: '%E4%B8%AD%E6%96%87'

In [16]: urllib.parse.unquote('%E4%B8%AD%E6%96%87')
Out[16]: '中文'

不对不对,其实是这样的

def url_encode(string):
    return parse.quote(string.encode('gb2312'))

先进行的 ‘gb2312’ 编码,又进行的 url 编码


参考资料

python中Url链接编码处理(urlencode,urldecode)
https://www.cnblogs.com/INnoVationv2/p/5837641.html

你可能感兴趣的:(Python基础)