Skip to content

Karmak23/siesta

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#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.resoure(id).resource_collection().get()

##Other REST clients for python

About

Sit back, relax and enjoy your REST client for python

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 89.2%
  • Shell 10.8%