Skip to main content

Microsoft Azure IoT Device Library

Project description

Azure IoT Device SDK

The Azure IoT Device SDK for Python provides functionality for communicating with the Azure IoT Hub for both Devices and Modules.

Note that this SDK is currently in preview, and is subject to change.

Features

The SDK provides the following clients:

  • Device Client

    • Send telemetry messages to Azure IoT Hub
    • Receive Cloud-to-Device (C2D) messages from the Azure IoT Hub
  • Module Client

    • Supports Azure IoT Edge Hub and Azure IoT Hub
    • Send telemetry messages to a Hub or to another Module
    • Receive Input messages from a Hub or other Modules

These clients are available with an asynchronous API, as well as a blocking synchronous API for compatibility scenarios. We recommend you use Python 3.7+ and the asynchronous API.

Python Version Asynchronous API Synchronous API
Python 3.5+ YES YES
Python 3.4 NO YES
Python 2.7 NO YES

Installation

pip install azure-iot-device

Set up an IoT Hub and create a Device Identity

  1. Install the Azure CLI (or use the Azure Cloud Shell) and use it to create an Azure IoT Hub.

    az iot hub create --resource-group <your resource group> --name <your IoT Hub name>
    
    • Note that this operation make take a few minutes.
  2. Add the IoT Extension to the Azure CLI, and then register a device identity

    az extension add --name azure-cli-iot-ext
    az iot hub device-identity create --hub-name <your IoT Hub name> --device-id <your device id>
    
  3. Retrieve your Device Connection String using the Azure CLI

    az iot hub device-identity show-connection-string --device-id <your device id> --hub-name <your IoT Hub name>
    

    It should be in the format:

    HostName=<your IoT Hub name>.azure-devices.net;DeviceId=<your device id>;SharedAccessKey=<some value>
    

Send a simple telemetry message

  1. Begin monitoring for telemetry on your IoT Hub using the Azure CLI

    az iot hub monitor-events --hub-name <your IoT Hub name> --output table
    
  2. On your device, set the Device Connection String as an enviornment variable called IOTHUB_DEVICE_CONNECTION_STRING.

    Windows

    set IOTHUB_DEVICE_CONNECTION_STRING=<your connection string here>
    
    • Note that there are NO quotation marks around the connection string.

    Linux

    export IOTHUB_DEVICE_CONNECTION_STRING="<your connection string here>"
    
  3. Copy the following code that sends a single message to the IoT Hub into a new python file on your device, and run it from the terminal or IDE (requires Python 3.7+):

    import os
    import asyncio
    from azure.iot.device.aio import IoTHubDeviceClient
    from azure.iot.device import auth
    
    
    async def main():
        # Fetch the connection string from an enviornment variable
        conn_str = os.getenv("IOTHUB_DEVICE_CONNECTION_STRING")
    
        # Create an authentication provider using the connection string
        auth_provider = auth.from_connection_string(conn_str)
    
        # Create instance of the device client using the authentication provider
        device_client = IoTHubDeviceClient.from_authentication_provider(auth_provider, "mqtt")
    
        # Connect the device client.
        await device_client.connect()
    
        # Send a single message
        print("Sending message...")
        await device_client.send_event("This is a message that is being sent")
        print("Message successfully sent!")
    
        # finally, disconnect
        await device_client.disconnect()
    
    
    if __name__ == "__main__":
        asyncio.run(main())
    
  4. Check the Azure CLI output to verify that the message was received by the IoT Hub. You should see the following output:

    Starting event monitor, use ctrl-c to stop...
    event:
      origin: <your Device name>
      payload: This is a message that is being sent
    
  5. Your device is now able to connect to Azure IoT Hub!

Additional Samples

Check out the samples repository for example code showing how the SDK can be used in a variety of scenarios, including:

  • Sending multiple telemetry messages at once.
  • Receiving Cloud-to-Device messages.
  • Using Edge Modules with the Azure IoT Edge Hub.
  • Legacy scenarios for Python 2.7 and 3.4

Getting help and finding API docs

Our SDK makes use of docstrings which means you cand find API documentation directly through Python with use of the help command:

>>> from azure.iot.device import IoTHubDeviceClient
>>> help(IoTHubDeviceClient)

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

azure-iot-device-2.0.0rc1.tar.gz (33.0 kB view details)

Uploaded Source

Built Distribution

azure_iot_device-2.0.0rc1-py2.py3-none-any.whl (45.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file azure-iot-device-2.0.0rc1.tar.gz.

File metadata

  • Download URL: azure-iot-device-2.0.0rc1.tar.gz
  • Upload date:
  • Size: 33.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for azure-iot-device-2.0.0rc1.tar.gz
Algorithm Hash digest
SHA256 4e3d591d82489fe8c1d0caf44953a22454df1d26e0976aada845d2e211b92c0b
MD5 821e6477ec530794326dceebfa7fcebb
BLAKE2b-256 45fe96119ab3d140785ab803d2ef0f95f53e73170072f9ce8dfbd56ef79ed6a9

See more details on using hashes here.

File details

Details for the file azure_iot_device-2.0.0rc1-py2.py3-none-any.whl.

File metadata

  • Download URL: azure_iot_device-2.0.0rc1-py2.py3-none-any.whl
  • Upload date:
  • Size: 45.7 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for azure_iot_device-2.0.0rc1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 7a9e0e5514dc87eb52362949974349218401a4fef0d3dc9dc7f7fb5b12d6f272
MD5 93391eae160c922d87f6bd4c0468728b
BLAKE2b-256 fc549839e0e7aa88187b6990e1016ce39eb38b32752f75ed967d02cbf6f7ff0f

See more details on using hashes here.

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