python 中文url编码处理
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 中文url编码处理相关的知识,希望对你有一定的参考价值。
可以直接处理中英混排的url
from urllib.parse import quote (python3)
from urllib import quote (python2)
url = ‘http://www.baidu.com?search=中文在这里‘
不带附加参数
print(‘\n不带附加参数:\n%s‘ % quote(url))
附带不转换字符参数
print(‘\n附加不转换字符参数:\n%s‘ % quote(url, safe=‘/:?=‘))
以上是关于python 中文url编码处理的主要内容,如果未能解决你的问题,请参考以下文章