I installed python, pip and easy_install on my computer. and with the pip command installed by spynner, but I have an error installing autopy, but I solved it with easy_install and after installation, I tried to use spynner, but it gave me a failure error ...
Here is what i have
import spynner
br = spynner.Browser()
br.load("http://www.google.com")
Traceback (most recent call last):
File "C:\Python27\lib\site-packages\spynner\browser.py", line 1674, in createRequest
url = six.u(toString(request.url()))
File "C:\Python27\lib\site-packages\six.py", line 589, in u
return unicode(s.replace(r'\', r'\\'), "unicode_escape")
TypeError: decoding Unicode is not supported
On my Windows 7 64bit Ultimate and Python 2.7.8 64bit
I tried 32 bit python but gave me the same error. Can anyone solve this error?
source
share