python的webservice请求
Posted xuzhongtao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python的webservice请求相关的知识,希望对你有一定的参考价值。
1.pip install client
2.pip install suds-jurko
#coding=utf-8
from suds.client import Client
import time
url=‘http://www.webxml.com.cn/WebServices/IpAddressSearchWebService.asmx?wsdl‘
client = Client(url)
def get_methods_name():
method_list=[]
for i in client.wsdl.services[0].ports[0].methods:
method_list.append(i)
return method_list
for i in get_methods_name():
print(i)
time.sleep(5)
func=getattr(client.service,i)
print(func(‘221.112.223.1‘))
# print(client.service.getCountryCityByIp(theIpAddress=‘221.112.223.1‘))
以上是关于python的webservice请求的主要内容,如果未能解决你的问题,请参考以下文章