我已经安装了 Python 2.7.1、setuptools 和 suds 0.4。

运行我的脚本时,出现以下错误:

回溯(最近一次调用最后一次):
文件“C:\Python27\test.py”,第 5 行,在
从suds.client导入客户端#suds soap客户端
导入错误:没有名为 suds.client 的模块

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

任何帮助将不胜感激。

此外,看起来肥皂水没有得到维护。您使用 Python 调用 Web 服务时使用什么?

最佳答案

听起来好像没有实际安装 suds。

由于您有安装工具,请尝试:

easy_install https://fedorahosted.org/releases/s/u/suds/python-suds-0.4.tar.gz

关于Python - suds - 没有模块,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5646364/

10-11 04:13