I am trying to use urllib.parse.urlencode() method in one of my scripts. import urllib
#!/usr/bin/python3.2
import urllib
data = urllib.parse.urlencode({'type': 'device_code','client_id': 150792241632891})
It was working before but now I get following error.
Output
Traceback (most recent call last):
File "/home/rakesh/programming/test.py", line 8, in <module>
data = urllib.parse.urlencode({'type': 'device_code','client_id': 150792241632891})
AttributeError: 'module' object has no attribute 'parse'
Initially I doubt my python shell but when I checked it is using python version 3.2 which should be fiine.
Now I am totally perplexed why python shell is behaving this way. Am I missing something here?
Thanks