reflect

Reflect Python bindings


License
MIT
Install
pip install reflect==0.3.0

Documentation

Reflect Python Client

A python wrapper for the Reflect API. The current iteration is specifically geared for uploading data, but full support for the API is planned. If there are features that are missing, feel free to open an issue or even a pull request!

Installation

The Reflect python library is available via PyPI.

$ pip install reflect

Example

import reflect

data = [
  {
    "customer_id": "customer1",
    "widget_id": "widget1",
    "manufactured": "Ohio",
    "temperature": 150
  },
  {
    "customer_id": "customer1",
    "widget_id": "widget2",
    "manufactured": "Ohio",
    "temperature": 50
  }
]

client = reflect.Client("<Your API Token>")
keyspace = client.keyspace("demo-keyspace")
keyspace.replace("my-tablet", data)

Support

Reach out to ReflectHQ on Twitter or file an issue here if you have questions or issues.