python soap协议接口获取数据 client端

2021/8/11 9:36:34

本文主要是介绍python soap协议接口获取数据 client端,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

1. python3安装suds库

pip install suds-py3

 2.查看接口中的方法

client=suds.client.Client('xxxx?wsdl')
def get_all_methods(client):
    return [method for method in client.wsdl.services[0].ports[0].methods]

3.查看方法接受的参数

def get_method_args(client, method_name):
    method = client.wsdl.services[0].ports[0].methods[method_name]
    input_params = method.binding.input
    return input_params.param_defs(method)

4.调用接口服务

client.service.method(params)

5.查看收到的数据

print( client.last_received())

 



这篇关于python soap协议接口获取数据 client端的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程