You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,20 @@ To find SDKs in other languages for Azure IoT, please refer to the [azure-iot-sd
13
13
## Developing applications for Azure IoT
14
14
Visit [Azure IoT Dev Center][iot-dev-center] to learn more about developing applications for Azure IoT.
15
15
16
+
## How to use the Azure IoT SDKs for Python
17
+
Devices and data sources in an IoT solution can range from a simple network-connected sensor to a powerful, standalone computing device. Devices may have limited processing capability, memory, communication bandwidth, and communication protocol support. The IoT device SDKs enable you to implement client applications for a wide variety of devices.
18
+
***Using PyPI package on Windows, Linux (Ubuntu) or Raspberry Pi**: the simplest way to use the Azure IoT SDK for Python to develop device apps on Windows is to leverage the PyPI package which you can install following these [instructions][PyPI-install-instructions].
19
+
***Clone the repository**: The repository is using [GitHub Submodules](https://git-scm.com/book/en/v2/Git-Tools-Submodules) for its dependencies. In order to automatically clone these submodules, you need to use the --recursive option as described here:
If you have downloaded the zip instead of cloning the repository, you will need to run the following command to restore submodules:
24
+
```
25
+
git submodule update --init --recursive
26
+
```
27
+
28
+
***Building the libraries and working with the SDK code**: follow [these instructions][devbox-setup].
29
+
16
30
## Key features and roadmap
17
31
18
32
### Device client SDK
@@ -45,20 +59,6 @@ Visit [Azure IoT Dev Center][iot-dev-center] to learn more about developing appl
45
59
| File Upload |:large_orange_diamond:| Set up your backend app to send file upload notification receiver. Click [here](https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-file-upload) for detailed information on the IoT Hub features. |
46
60
| SDK Versioning |:large_orange_diamond:| Use your backend app to get Service Client SDK Version. |
47
61
48
-
## How to use the Azure IoT SDKs for Python
49
-
Devices and data sources in an IoT solution can range from a simple network-connected sensor to a powerful, standalone computing device. Devices may have limited processing capability, memory, communication bandwidth, and communication protocol support. The IoT device SDKs enable you to implement client applications for a wide variety of devices.
50
-
***Using PyPI package on Windows, Linux (Ubuntu) or Raspberry Pi**: the simplest way to use the Azure IoT SDK for Python to develop device apps on Windows is to leverage the PyPI package which you can install following these [instructions][PyPI-install-instructions].
51
-
***Clone the repository**: The repository is using [GitHub Submodules](https://git-scm.com/book/en/v2/Git-Tools-Submodules) for its dependencies. In order to automatically clone these submodules, you need to use the --recursive option as described here:
0 commit comments