scastillo / siesta

Sit back, relax and enjoy your REST client for python
scastillo.github.com/siesta
98 stars 19 forks source link

Python Siesta

 from siesta import API
 api = API('http://myrestful/api/v1')

 # GET /resource
 api.resource.get()
 # GET /resource (with accept header = application/json)
 api.resource.get(format='json')
 # GET /resource?attr=value
 api.resource.get(attr=value)

 # POST /resource
 api.resource.post(attr=value, attr2=value2, ...)
 # GET /resource/id/resource_collection
 api.resource(id).resource_collection().get()

Other REST clients for python