readycloud

Python client for ReadyCloud API.


Keywords
readycloud-python-client
License
BSD-3-Clause
Install
pip install readycloud==0.3.2

Documentation

ReadyCloud API Client

https://badge.fury.io/py/readycloud.png https://travis-ci.org/trueship/readycloud-python-client.png?branch=master https://pypip.in/d/readycloud/badge.png

Python client for ReadyCloud API.

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')