Skip to main content

Cloud IoT API client library

Project description

In order to use this library, you first need to go through the following steps:

  1. Install pip package - `pip install clearblade-cloud-iot`

  2. Set an environment variable CLEARBLADE_CONFIGURATION which should point to your clearblade service account json file.

  3. Optionally set an environment variable BINARYDATA_AND_TIME_GOOGLE_FORMAT to True. Look at Note about types of times and binaryData below for details.

Installation

Install this library in a virtualenv using pip. virtualenv is a tool to create isolated Python environments. The basic problem it addresses is one of dependencies and versions, and indirectly permissions.

With virtualenv, it’s possible to install this library without needing system install permissions, and without clashing with the installed system dependencies.

Code samples and snippets

Code samples and snippets live in the samples/clearblade folder.

Supported Python Versions

Our client libraries are compatible with all current active and maintenance versions of Python.

Python >= 3.7

Unsupported Python Versions

Python <= 3.6

If you are using an end-of-life version of Python, we recommend that you update as soon as possible to an actively supported version.

Mac/Linux

pip install virtualenv
virtualenv <your-env>
source <your-env>/bin/activate

Windows

pip install virtualenv
virtualenv <your-env>
<your-env>\Scripts\activate

Next Steps

  • clone the github repository.

  • and execute the setup.py file like , python setup.py install.

  • mostly if you change you imports from from google.cloud to clearblade.cloud everything else should work.

Note about types of times and binaryData

  • By default the following parameters are returned as the shown types:

  1. All time parameters (e.g. cloudUpdateTime, deviceAckTime, updateTime): RFC3339 strings (e.g. “2023-01-12T23:38:07.732Z”)

  2. CONFIG binaryData: base64-encoded string

  3. STATE binaryData: NON-base64-encoded string

  • To return these parameters using the same types used by the Google IoTCore Python SDK, set environment variable BINARYDATA_AND_TIME_GOOGLE_FORMAT to True (case-insensitive string). This will ensure the following parameters are returned as the shown types:

  1. All times: DatetimeWithNanoseconds (defined in the proto.datetime_helpers module)

  2. All binaryData (CONFIG, STATE etc.): BYTE ARRAYS

  • If this environment variable is not set, or is set to any unexpeced values, then the default types listed previously are used.

Note about running from source instead of PyPi (pip) module:

  • To temporarily use the source code in this repo. instead of the installed PyPi (pip) module do the following:

  1. Clone this repo.

  2. Checkout the desired branch using git checkout <branch>.

  3. In your code find where clearblade or clearblade.cloud is being imported.

  4. Precede that line with import sys and sys.path.insert(0, <path_to_python-iot>). The path must end with “python-iot”. So for example:

import sys
sys.path.insert(0, "path/to/python-iot")

from clearblade.cloud import iot_v1

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

clearblade-cloud-iot-2.0.1.tar.gz (38.9 kB view hashes)

Uploaded Source

Built Distribution

clearblade_cloud_iot-2.0.1-py2.py3-none-any.whl (31.3 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page