It's a load of effort to correctly consume from a RESTful webservice currently.
I should be able to get going in my REPL with something like:
>>> from rest import client
>>> proxy = client(url)
>>> print proxy.resources
['foo', 'bar']
>>> help(client.foo)
Help text from the rest service...
>>> client.foo(123)
321
# repeat calls transparently handle caching