title | description | author | manager | ms.service | services | ms.devlang | ms.topic | ms.custom | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|
Send telemetry to Azure IoT Hub quickstart (Python) | Microsoft Docs |
In this quickstart, you run a sample Python application to send simulated telemetry to an IoT hub and use a utility to read telemetry from the IoT hub. |
dominicbetts |
timlt |
iot-hub |
iot-hub |
python |
quickstart |
mvc |
09/07/2018 |
dobett |
Quickstart: Send telemetry from a device to an IoT hub and read the telemetry from the hub with a back-end application (Python)
[!INCLUDE iot-hub-quickstarts-1-selector]
IoT Hub is an Azure service that enables you to ingest high volumes of telemetry from your IoT devices into the cloud for storage or processing. In this quickstart, you send telemetry from a simulated device application, through IoT Hub, to a back-end application for processing.
The quickstart uses a pre-written Python application to send the telemetry and a CLI utility to read the telemetry from the hub. Before you run these two applications, you create an IoT hub and register a device with the hub.
[!INCLUDE cloud-shell-try-it.md]
If you don’t have an Azure subscription, create a free account before you begin.
The two sample applications you run in this quickstart are written using Python. You need either Python 2.7.x or 3.5.x on your development machine.
You can download Python for multiple platforms from Python.org. The Python installer you choose should be based on the architecture of the system that you are working with. If your system CPU architecture is 32 bit then download x86, which is the default installer on Python.org and for the 64bit architecture you need to download x86-64 installer.
You can verify the current version of Python on your development machine using one of the following commands:
python --version
python3 --version
Download the sample Python project from https://github.com/Azure-Samples/azure-iot-samples-python/archive/master.zip and extract the ZIP archive.
[!INCLUDE iot-hub-include-create-hub]
A device must be registered with your IoT hub before it can connect. In this quickstart, you use the Azure Cloud Shell to register a simulated device.
-
Run the following commands in Azure Cloud Shell to add the IoT Hub CLI extension and to create the device identity.
YourIoTHubName : Replace this placeholder below with the name you choose for your IoT hub.
MyPythonDevice : This is the name given for the registered device. Use MyPythonDevice as shown. If you choose a different name for your device, you will also need to use that name throughout this article, and update the device name in the sample applications before you run them.
az extension add --name azure-cli-iot-ext az iot hub device-identity create --hub-name YourIoTHubName --device-id MyPythonDevice
-
Run the following commands in Azure Cloud Shell to get the device connection string for the device you just registered:
YourIoTHubName : Replace this placeholder below with the name you choose for your IoT hub.
az iot hub device-identity show-connection-string --hub-name YourIoTHubName --device-id MyPythonDevice --output table
Make a note of the device connection string, which looks like:
HostName={YourIoTHubName}.azure-devices.net;DeviceId=MyNodeDevice;SharedAccessKey={YourSharedAccessKey}
You use this value later in the quickstart.
The simulated device application connects to a device-specific endpoint on your IoT hub and sends simulated temperature and humidity telemetry.
-
In a local terminal window, navigate to the root folder of the sample Python project. Then navigate to the iot-hub\Quickstarts\simulated-device folder.
-
Open the SimulatedDevice.py file in a text editor of your choice.
Replace the value of the
CONNECTION_STRING
variable with the device connection string you made a note of previously. Then save your changes to SimulatedDevice.py file. -
In the local terminal window, run the following commands to install the required libraries for the simulated device application:
pip install azure-iothub-device-client
-
In the local terminal window, run the following commands to run the simulated device application:
python SimulatedDevice.py
The following screenshot shows the output as the simulated device application sends telemetry to your IoT hub:
The IoT Hub CLI extension can connect to the service-side Events endpoint on your IoT Hub. The extension receives the device-to-cloud messages sent from your simulated device. An IoT Hub back-end application typically runs in the cloud to receive and process device-to-cloud messages.
Run the following commands in Azure Cloud Shell, replacing YourIoTHubName
with the name of your IoT hub:
az iot hub monitor-events --device-id MyPythonDevice --hub-name YourIoTHubName
The following screenshot shows the output as the extension receives telemetry sent by the simulated device to the hub:
[!INCLUDE iot-hub-quickstarts-clean-up-resources]
In this quickstart, you've setup an IoT hub, registered a device, sent simulated telemetry to the hub using a Python application, and read the telemetry from the hub using a simple back-end application.
To learn how to control your simulated device from a back-end application, continue to the next quickstart.
[!div class="nextstepaction"] Quickstart: Control a device connected to an IoT hub