I have python 2.7.9 installed. When I run my script, I get the following error:
from suds.client import client ImportError: No module named suds.client
So, I downloaded the suds library from:
https://fedorahosted.org/releases/s/u/suds/python-suds-0.4.tar.gz
and extracted it and installed using the command ( python setup.py install ).
The installed suds file is placed in the C:\Python27\Lib\site-packages suds-0.4-py2.7.egg as suds-0.4-py2.7.egg . But when I run my script again, I found the same error.
Did I miss something?
source share