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编码处理的主要内容,如果未能解决你的问题,请参考以下文章

python中对url编码解码处理

day8-Python学习笔记(十七)url编码,异常处理

python中Url链接编码处理(urlencode,urldecode)

Python-Url编码和解码

Python进阶篇四Python爬虫的URL编码/解码

python--url编码/解码