зеркало из
1
0
Форкнуть 0
azure-iot-sdk-python/azure-iot-hub
Bert Kleewein 4633219c67
Remove flake8 F401 and F403 global suppressions (#986)
2022-04-14 12:56:33 -07:00
..
azure Remove flake8 F401 and F403 global suppressions (#986) 2022-04-14 12:56:33 -07:00
samples Remove flake8 F401 and F403 global suppressions (#986) 2022-04-14 12:56:33 -07:00
tests Remove flake8 F401 and F403 global suppressions (#986) 2022-04-14 12:56:33 -07:00
.bumpversion.cfg fix: bumpverion.cfg -> bumpversion.cfg (#977) 2022-03-23 12:35:18 -07:00
LICENSE chore: Formally added license files to packages (#918) 2021-12-10 12:36:35 -08:00
MANIFEST.in Service Client Registry Manager initial creation (#317) 2019-09-19 15:48:43 -07:00
README.md misc changes for default branch rename to main (#903) 2021-11-18 13:31:00 -08:00
protocol-generator.md Service Client Registry Manager initial creation (#317) 2019-09-19 15:48:43 -07:00
service.json Add parentScopes and deviceScope properties (#750) 2021-04-19 08:05:16 -07:00
setup.cfg Add new package azure-iot-hub (#345) 2019-10-14 11:31:06 -07:00
setup.py chore: Updated language classifiers (#920) 2021-12-13 11:24:43 -08:00

README.md

Azure IoTHub Service SDK

The Azure IoTHub Service SDK for Python provides functionality for communicating with the Azure IoT Hub.

Features

The SDK provides the following clients:

  • IoT Hub Registry Manager

    • Provides CRUD operations for device on IoTHub
    • Get statistics about the IoTHub service and devices

Installation

pip install azure-iot-hub

DEPRECATION NOTICE: SUPPORT FOR PYTHON 2.7 WILL BE DROPPED AT THE BEGINNING OF 2022

IoTHub Samples

Check out the samples repository for more detailed samples

Getting help and finding API docs

API documentation for this package is available via Microsoft Docs

Additionally, the SDK makes use of docstrings which means you can find API documentation directly through Python with use of the help command:

>>> from azure.iot.hub import IoTHubRegistryManager
>>> help(IoTHubRegistryManager)