Python: no module named suds

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?

+5
source share
2 answers

Now I got, Actually I needed to extract this

suds-0.4-py2.7.egg file.

After extracting it, it will create a suds folder in the directory C: \ Python27 \ Lib \ site-packages
It worked for me.

+1
source

My problem with missing foam was solved using suds-jurko as a replacement for the original suds package. Python 3.5.1

0
source

All Articles