Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python - suds - no module

I've installed Python 2.7.1, setuptools and suds 0.4.

When running my script, I'm having the following error:

Traceback (most recent call last): File "C:\Python27\test.py", line 5, in from suds.client import Client # suds soap client ImportError: No module named suds.client

It looks like Python can't find the suds library. But I can't understand why ...

Any help would be greatly appreciate.

Also, it looks like suds isn't maintained. What are you using to call your web services using Python?

like image 216
Olivier Avatar asked Dec 07 '22 22:12

Olivier


1 Answers

Sounds like suds is not actually installed.

Since you have setuptools, try:

easy_install https://fedorahosted.org/releases/s/u/suds/python-suds-0.4.tar.gz
like image 132
Ashy Avatar answered Dec 20 '22 18:12

Ashy