Disruptive Technologies Python API.
Project description
Disruptive Technologies Python API
Documentation
Installation
The package can be installed through pip:
pip install --upgrade disruptive
or from source:
pip install .
Requirements
- Python 3.7+
Authentication
Using Service Account credentials, setting disruptive.default_auth
authenticates the package:
import disruptive as dt
dt.default_auth = dt.Auth.serviceaccount(key_id, secret, email)
Usage
API methods are grouped under various resource names on the form disruptive.<Resource>.<method>()
.
# Fetch a specific temperature sensor from a project.
sensor = dt.Device.get_device(device_id)
# Print the sensor information, listing all available attributes.
print(sensor)
# Set a new label on the sensor.
dt.Device.set_label(sensor.device_id, sensor.project_id, key='nb#', value='99')
# Get touch- and temperature event history the last 24 hours for the sensor.
history = dt.EventHistory.list_events(
sensor.device_id,
sensor.project_id,
event_types=['touch', 'temperature']
)
# Set up a real-time event stream for the sensor.
for new_event in dt.Stream.device(sensor.device_id, sensor.project_id):
# Print the data in new events as they arrive.
print(new_event.data)
Logging
Information about outbound requests and their response can be printed to console by setting:
dt.log = True
Examples
A few examples showcasing various uses for the package has been provided. They do not require additional dependencies and can, provided the package has been installed, be run by:
python example_name.py
or from root using the source code:
python -m examples.example_name
Exceptions
If a request is unsuccessful or has been provided with invalid parameters, an exception is raised. A list of available exceptions are available in the API Reference.
Development
Set up the development virtualenv environment:
make
Run unit-tests against the currently active python version:
make test
Lint the package code using MyPy and flake8:
make lint
Build the sphinx documentation:
make docs
Build the package distribution:
make build
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for disruptive-0.2.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58b7596e1d7209bf5f0cd8e3f48c2d832ae46fd47e51a802104b9c916b8a23cf |
|
MD5 | 712e3cdc9091d613e6372d90ecd016de |
|
BLAKE2b-256 | d61f7e7ee18cd6b3caa676b19b60c45f3cc4175819f4aaba83ad5e28e2e78934 |