UserPreferences

PythonLanguage/WebServicesTechniques


A very simple Python example:
  1 
  2 
  3 
  4 
  5 
  6 
  7 
# using http://pywebsvcs.sourceforge.net/
ref = "Genesis 1:1"

from SOAPpy import WSDL
server = WSDL.Proxy('http://www.stgregorioschurchdc.org/wsdl/Bible.wsdl')
r = server.read_bible(ref)
print r

Links: