python—webservice接口测试

webservice接口:一个url下包含多个接口,返回数据为xml文档

安装模块 pip install suds-jurko

from suds import client

url = "https://xxxxxx"
cli = client.Client(url=url) # 查看该webservice接口下有包含哪些接口
print(cli)
res=cli.service.接口名("参数") # 调接口查看返回结果