tags:

views:

33

answers:

1

I downloaded the python client for magento from Here But When I am downloading is using python setup.py install then it shows following error. How can i rectify this error?

error:

File "setup.py", line 31, in <module>
    import magento
  File "/home/sam/Downloads/magento-0.1.1/magento/__init__.py", line 21, in <module>
    from api import API
  File "/home/sam/Downloads/magento-0.1.1/magento/api.py", line 13, in <module>
    from suds.client import Client
+3  A: 

Are you getting

ImportError: No module named suds.client

as the last line of the error message? If so, perhaps you need to install this.

unutbu