Skip to main content

Python Device Cloud Library

Latest Version License

Be sure to check out the full documentation. A Changelog is also available.

Overview

Python-devicecloud is a library providing simple, intuitive access to Digi Remote Manager for clients written in Python.

The library wraps Digi Remote Manager's REST API and hides the details of forming HTTP requests in order to gain access to device information, file data, streams, and other features of Digi Remote Manager. The API can be found here.

The primary target audience for this library is individuals interfacing with Digi Remote Manager from the server side or developers writing tools to aid device development.

Example

The library provides access to a wide array of features, but here is a couple quick examples to give you a taste of what the API looks like.

from devicecloud import DeviceCloud

dc = DeviceCloud('user', 'pass')

# show the MAC address of all devices that are currently connected
#
# This is done using Device Cloud DeviceCore functionality
print "== Connected Devices =="
for device in dc.devicecore.get_devices():
    if device.is_connected():
        print device.get_mac()

# get the name and current value of all data streams having values
# with a floating point type
#
# This is done using Device Cloud stream functionality
for stream in dc.streams.get_streams():
    if stream.get_data_type().lower() in ('float', 'double'):
        print "%s -> %s" % (stream.get_stream_id(), stream.get_current_value())

For more examples and detailed documentation, be sure to check out the Full API Documentation.

Installation

This library can be installed using pip. Python versions 2.7+ and 3+ are supported by the library.

pip install devicecloud

If you already have an older version of the library installed, you can upgrade to the latest version by doing

pip install --upgrade devicecloud

Supported Features

Eventually, it is hoped that there will be complete feature parity between Device Cloud API and this library. For now, however, that is not the case. The current features are supported by the library:

  • Getting basic device information via DeviceCore
  • Provision and Delete devices via DeviceCore
  • Listing devices associated with a device cloud account
  • Interacting with Device Cloud Data Streams
    • Create Streams
    • Get Stream (by id)
    • List all streams
    • Get metadata for a stream
    • Write a single datapoint to a stream
    • Write many datapoints to a stream (homogeneous bulk write)
    • Write many datapoints to multiple streams (heterogeneous bulk write)
    • Read data points from a stream (includes control over order of returned data set as well as allowing for retrieving data roll-ups, etc.)
  • Support for accessing Device Cloud FileData store
    • Get filedata matching a provided condition (path, file extension, size, etc.)
    • Write files to filedata store
    • Recursively walk filedata directory tree from some root location
    • Get full metadata and contents of files and directories.
  • Low level support for performing basic SCI commands with limited parsing of results and support for only a subset of available services/commands.
  • APIs to make direct web service calls to Device Cloud with some details handled by the library (see DeviceCloudConnection and 'ws' documentation)
  • Device Provisioning via Mac Address, IMEI or Device ID
  • Monitors
  • Creating a TCP or HTTP monitor

The following features are not supported at this time. Feedback on which features should be highest priority is always welcome.

  • Alarms
  • Scheduled Operations
  • Asynchronous SCI requests
  • High level access to many SCI/RCI operations
  • DeviceMetaData
  • DeviceVendor
  • FileDataHistory
  • NetworkInterface support
  • XBee specific support (XBeeCore)
  • Smart Energy APIs
  • SMS Support
  • SM/UDP Support
  • Carrier Information Access

Contributing

Contributions to the library are very welcome in whatever form can be provided. This could include issue reports, bug fixes, or features additions. For issue reports, please create an issue against the Github project.

For code changes, feel free to fork the project on Github and submit a pull request with your changes. Additional instructions for developers contributing to the project can be found in the Developer's Guide.

License

This software is open-source software.

Copyright (c) 2015-2025 Digi International Inc.

This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, you can obtain one at https://mozilla.org/MPL/2.0/.

Digi, Digi International, the Digi logo, the Digi website, Digi Device Cloud, Digi Remote Manager, and Digi Cloud Connector are trademarks or registered trademarks of Digi International Inc. in the United States and other countries worldwide. All other trademarks are the property of their respective owners.

THE SOFTWARE AND RELATED TECHNICAL INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL DIGI OR ITS SUBSIDIARIES BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE AND TECHNICAL INFORMATION HEREIN, INCLUDING ALL SOURCE AND OBJECT CODES, IRRESPECTIVE OF HOW IT IS USED. YOU AGREE THAT YOU ARE NOT PROHIBITED FROM RECEIVING THIS SOFTWARE AND TECHNICAL INFORMATION UNDER UNITED STATES AND OTHER APPLICABLE COUNTRY EXPORT CONTROL LAWS AND REGULATIONS AND THAT YOU WILL COMPLY WITH ALL APPLICABLE UNITED STATES AND OTHER COUNTRY EXPORT LAWS AND REGULATIONS WITH REGARD TO USE AND EXPORT OR RE-EXPORT OF THE SOFTWARE AND TECHNICAL INFORMATION.

Release files for devicecloud 0.5.10

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for devicecloud 0.5.10
File Size Uploaded
devicecloud-0.5.10.tar.gz 87.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for devicecloud 0.5.10
File Interpreter ABI Platform
devicecloud-0.5.10-py3-none-any.whl Python 3 none any Details

Total release size: 190.9 kB

Release files / devicecloud-0.5.10.tar.gz

Download URL devicecloud-0.5.10.tar.gz
Size 87.6 kB
Tags Source
SHA-256 checksum
How to use checksums
4adf869dc14a208a91a02cd0b670f08d8cb7165389ddb46074dbac73b23e1294
BLAKE2b-256 checksum
How to use checksums
be523ddb5a6b774706ecc63d5abc785375e997f88ea3af369de3a048207ed079
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.10.11

Release files / devicecloud-0.5.10-py3-none-any.whl

Download URL devicecloud-0.5.10-py3-none-any.whl
Size 103.3 kB
Tags Python 3
SHA-256 checksum
How to use checksums
975fed2ff7cfb3b346bf7be935d2d3c6fc24d29deed4cf6950ba851f42f33578
BLAKE2b-256 checksum
How to use checksums
47ea3528f984514e240880317deeef0123fe9840be19687b40ee8a99b294727b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.10.11

Release history Release notifications | RSS feed

This release

0.5.10 This release

2 release files

0.5.9

2 release files

0.5.8

2 release files

0.5.7

3 release files

0.5.6

2 release files

0.5.5

1 release file

0.5.4

2 release files

0.5.3

3 release files

0.5.1

3 release files

0.5.0

3 release files

0.4.2

1 release file

0.4.1

1 release file

0.4

1 release file

0.3

1 release file

0.2

1 release file

0.1.1

1 release file

0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page