Python SOAP Web Services:
There are a few python SOAP web service APIS,
One of the more feature rich ones is called ZSI : http://sourceforge.net/projects/pywebsvcs/, the api download contains samples for its use,
Some more light weight SOAP APIs:
soaplib > http://www.python.org/pypi/soaplib, this one is maintained by the python project
suds > https://fedorahosted.org/suds
Examples for these are also included within the source.
Python JSON web services:
http://json-rpc.org/wiki/python-json-rpc
Example:
>>> from jsonrpc import ServiceProxy
>>> s = ServiceProxy("http://jsolait.net/services/test.jsonrpc")
>>> print s.echo("foobar")
It looks like you're new here. If you want to get involved, click one of these buttons!