suds 在python3.x上的安装并访问webservice

类库安装

直接使用命令行:pip install suds

报错:Traceback (most recent call last):
    File "setup.py", line 20, in <module>
      import suds
    File "/root/python-suds-0.4.1/suds/__init__.py", line 154, in <module>
      import client
  ImportError: No module named client

 

后来从网上看到了解决方案,说官网已经用另外一个库替代了这个库

pip install suds-jurko

 

此库是为了解决python访问webservice的

 

调用代码:

 

 1 import suds
 2 
 3 from suds.client import Client
 4 
 5 url = "http://192.168.1.235:12581/ServiceYuYue.svc?wsdl"
 6 client = suds.client.Client(url)
 7 
 8 #getHealthyHeBei是webService提供的方法
 9 result = client.service.getHealthyHeBei(18210409689)
10 
11 #打印出结果
12 print(result)

 

 

使用开源的东西就有一点不好,兼容性做不好的时候需要自己去不断摸索,而没有太多的现成的解决方案可供参考。

 

posted @ 2015-08-19 13:19  心如止水-杜  阅读(9302)  评论(2编辑  收藏  举报
技术文章,欢迎转载,转载请注明出处。 杜鹤飞的技术博客 邮箱地址:dhf327@163.com