Wenn ich versuche, dem Beispiel des Python-Wikis zur URL-Codierung zu folgen :
>>> 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()
In der zweiten Zeile wird ein Fehler ausgegeben:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'urlencode'
Was vermisse ich?