我曾尝试关注the documentation,但无法在urlparse.parse.quote_plus()
中使用Python 3
:
from urllib.parse import urlparse
params = urlparse.parse.quote_plus({'username': 'administrator', 'password': 'xyz'})
我知道
AttributeError:'function'对象没有属性'parse'
您误读了文档。您需要做两件事:
对于Python 3,您可以尝试使用quote
而不是quote_plus
:
您正在寻找urllib.parse.urlencode