python编写webservice接口


1.pip install suds-jurko

2.pip install client

#coding=utf-8

from suds.client import Client

class WebserviceTest:

  def __init__(self,url):

    self.client = Client(url)

    def get_methods_name(self):

  method_list = []

  for i in self.client.wsdl.services[0].ports[0].methods:

  method_list.append(i)

  return method_list

  #获取方法参数

  def get_method_parame(self,method_name):

    method = self.client.wsdl.services[0].ports[0].methods[method_name]

    input_parames = method.binding.input

    parames = input_parames.param_defs(method)[0]  

    return parames[1].name,parames[1].type[0]

  def run_main(self):

    for method in self.get_methods_name():

  func = getattr(self.client.service,method)

  print func('122.122.122.2')

if __name__ == '__main__':

  url = 'http://www.webxml.com.cn/WebServices/IpAddressSearchWebService.asmx?wsdl'

  web = WebserviceTest(url)

  name = web.get_methods_name()[0]

  print web.run_main()

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM