python3调用webservice接口之多参数传递
摘要:
from suds.client import Client def func(url, operation, *args):'''接口调用''' client = Client(url) result = eval("client.service.%s" % operation)(*args) # 阅读全文
posted @ 2017-08-24 11:42 sammy1989 阅读(2828) 评论(0) 推荐(0) 编辑