P粉2708916882023-08-24 11:41:36
您要查找的是 urllib.quote_plus
:
safe_string = urllib.quote_plus('string_of_characters_like_these:$#@=?%^Q^$') #Value: 'string_of_characters_like_these%3A%24%23%40%3D%3F%25%5EQ%5E%24'
在 Python 3 中,urllib
包已被分解为更小的组件。您将使用 urllib.parse.quote_plus< /code>
(注意 parse
子模块)
import urllib.parse safe_string = urllib.parse.quote_plus(...)
P粉5628459412023-08-24 00:39:26
您需要将参数传递到 urlencode()< /code>
作为映射(字典)或二元组序列,例如:
>>> import urllib >>> f = { 'eventName' : 'myEvent', 'eventDescription' : 'cool event'} >>> urllib.urlencode(f) 'eventName=myEvent&eventDescription=cool+event'
Python 3 或更高版本
使用urllib.parse.urlencode< /代码>
:
>>> urllib.parse.urlencode(f) eventName=myEvent&eventDescription=cool+event
请注意,这不执行常用意义上的 url 编码(查看输出)。为此,请使用 urllib.parse.quote_plus代码>
.