“模块”没有属性“ urlencode”


108

当我尝试遵循与URL编码相关的Python Wiki的示例时

>>> import urllib
>>> params = urllib.urlencode({'spam': 1, 'eggs': 2, 'bacon': 0})
>>> f = urllib.urlopen("http://www.musi-cal.com/cgi-bin/query", params)
>>> print f.read()

在第二行引发错误:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'urlencode'

我想念什么?


4
URL中的“ 2”。
伊格纳西奥·巴斯克斯

Answers:



35
import urllib.parse
urllib.parse.urlencode({'spam': 1, 'eggs': 2, 'bacon': 0})

3

您使用Python 2文档,但使用Python 3编写程序。


好吧,这是您问题中的标记,并且链接指向Python 2文档。
Malik Brahimi 2015年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.