Python - suds - 没有模块

Oli*_*ier 4 python web-services suds

我安装了Python 2.7.1,setuptools和suds 0.4.

运行我的脚本时,我遇到以下错误:

回溯(最近一次调用最后一次):文件"C:\ Python27\test.py",第5行,来自suds.client import客户端#suds soap client ImportError:没有名为suds.client的模块

看起来Python无法找到suds库.但我不明白为什么......

任何帮助都会非常感激.

此外,它似乎不保持肥皂水.你用什么来用Python调用你的web服务?

Ash*_*shy 15

听起来像suds实际上并没有安装.

由于您有setuptools,请尝试:

easy_install https://fedorahosted.org/releases/s/u/suds/python-suds-0.4.tar.gz
Run Code Online (Sandbox Code Playgroud)