本文整理汇总了Python中SOAPpy.SOAPProxy.saldoProduto方法的典型用法代码示例。如果您正苦于以下问题:Python SOAPProxy.saldoProduto方法的具体用法?Python SOAPProxy.saldoProduto怎么用?Python SOAPProxy.saldoProduto使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SOAPpy.SOAPProxy
的用法示例。
在下文中一共展示了SOAPProxy.saldoProduto方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: SOAPProxy
# 需要导入模块: from SOAPpy import SOAPProxy [as 别名]
# 或者: from SOAPpy.SOAPProxy import saldoProduto [as 别名]
# encoding: utf-8
#!/usr/bin/env python
from SOAPpy import SOAPProxy
# conectando diretamente
proxy = SOAPProxy("http://localhost:8080")
print str(proxy.saldoProduto("0001", "1"))
print str(proxy.descricaoProduto("0001"))
print str(proxy.precoProduto("0001"))
print str(proxy.saldoProduto("0001", "2"))
print str(proxy.descricaoProduto("0002"))
print str(proxy.precoProduto("0002"))