0 purchases
readycloud 0.3.2
Python client for ReadyCloud API.
Free software: BSD license
Documentation: https://readycloud-python-client.readthedocs.org.
Features
GET, POST, PUT, PATCH, DELETE requests to ReadyCloud.
CRUD functions for Order, WebHooks
Support for Python2 and Python3.
Installation
pip install readycloud
Usage
from readycloud import ReadyCloud
rc = ReadyCloud(token='your token')
orders = rc.get_orders()
order = orders['objects']['0']
order['message'] = 'New message'
rc.update_order(order['id'], order)
rc.delete_order(order['id'])
boxes = rc.get('/api/v1/boxes')
History
0.3.1 (2015-11-24)
Added patch method to perform PATCH HTTP requests.
0.3.0 (2015-10-09)
Added support for the 2.0 API.
0.2.0 (2014-08-16)
Added register webhooks methods
Fixed few issues
0.1.0 (2014-08-12)
First release on PyPI.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.