Rest Client Library
A REST (Representational state transfer) client interface for Python.
Client code to access this application may look something like this:
users = new Resource('http://example.com/users')
users.get()
users.get(1)
users.get(1, name='Xavier')
users.create(name='Foo Bar')
users.update(2, birthday='01/01/1969')
users.delete(2)