python读取webservice

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python读取webservice相关的知识,希望对你有一定的参考价值。

网上最多的是suds模块,这里也使用suds。

1、安装:

  和所有python模块安装一样,可以使用easy_install或pip在线安装,也可以下载离线安装.

  https://pypi.python.org/pypi/suds/

2、简单入门:

  

import logging
from suds.client import Client   
from suds.xsd.doctor import ImportDoctor,Import
#日志,suds下的各个python模块或者说python文件大多都使用了logging模块进行日志记录,我们只需要设置好日志的等级、格式、路径等,就可以进行对应模块的日志记录了

 logging.basicConfig(level=logging.INFO,  

                    format=‘%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s‘,  

                    datefmt=‘%a, %d %b %Y %H:%M:%S‘,  

                    filename=‘/tmp/test.log‘,  

                    filemode=‘w‘) 

logging.getLogger(suds.xsd.schema).setLevel(logging.DEBUG)
#Import和DoctorImport是提供wsdl中缺少的import标签的
imp = Import("http://www.w3.org/2001/XMLSchema",location="http://www.w3.org/2001/XMLSchema.xsd")
imp.filter.add("http://WebXml.com.cn/")
doctor=ImportDoctor(imp)
url =http://www.webxml.com.cn/WebServices/TrainTimeWebService.asmx?wsdl
client = Client(url,doctor=doctor)
r = client.service.getStationName()

3、WSDL

  wsdl使用xml文件格式,xsd规范对外提供webservice接口。suds模块很大一部分是对于wsdl对应的xml文件的解析。所以需要对wsdl有个系统的了解。

  http://www.phpstudy.net/e/wsdl/

以上是关于python读取webservice的主要内容,如果未能解决你的问题,请参考以下文章

从 mfc 应用程序中点击 webservice 并希望从 webservice 登录方法读取用户代码返回

delphi7 WebServices 读取数据

python访问webservice接口

solr分布式索引实战分片配置读取:工具类configUtil.java,读取配置代码片段,配置实例

基于Python的Webservice开发-如何用Spyne开发Webservice

python 读取多个csv文件中某一列,并生成一个新csv文件