├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── iot-central └── Quickstarts │ └── send_temperature.py ├── iot-edge └── Tutorials │ └── PythonFilter │ ├── .gitignore │ ├── Dockerfile │ ├── main.py │ ├── module.json │ └── requirements.txt └── iot-hub └── Quickstarts ├── back-end-application └── BackEndApplication.py ├── read-d2c-messages ├── Readme.md ├── read_device_to_cloud_messages_async.py ├── read_device_to_cloud_messages_sync.py └── requirements.txt ├── simulated-device-2 ├── SimulatedDeviceAsync.py └── SimulatedDeviceSync.py └── simulated-device ├── SimulatedDeviceAsync.py └── SimulatedDeviceSync.py /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/README.md -------------------------------------------------------------------------------- /iot-central/Quickstarts/send_temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/iot-central/Quickstarts/send_temperature.py -------------------------------------------------------------------------------- /iot-edge/Tutorials/PythonFilter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/iot-edge/Tutorials/PythonFilter/.gitignore -------------------------------------------------------------------------------- /iot-edge/Tutorials/PythonFilter/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/iot-edge/Tutorials/PythonFilter/Dockerfile -------------------------------------------------------------------------------- /iot-edge/Tutorials/PythonFilter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/iot-edge/Tutorials/PythonFilter/main.py -------------------------------------------------------------------------------- /iot-edge/Tutorials/PythonFilter/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/iot-edge/Tutorials/PythonFilter/module.json -------------------------------------------------------------------------------- /iot-edge/Tutorials/PythonFilter/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-iot-device>=2.0.0rc10 -------------------------------------------------------------------------------- /iot-hub/Quickstarts/back-end-application/BackEndApplication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/iot-hub/Quickstarts/back-end-application/BackEndApplication.py -------------------------------------------------------------------------------- /iot-hub/Quickstarts/read-d2c-messages/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/iot-hub/Quickstarts/read-d2c-messages/Readme.md -------------------------------------------------------------------------------- /iot-hub/Quickstarts/read-d2c-messages/read_device_to_cloud_messages_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/iot-hub/Quickstarts/read-d2c-messages/read_device_to_cloud_messages_async.py -------------------------------------------------------------------------------- /iot-hub/Quickstarts/read-d2c-messages/read_device_to_cloud_messages_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/iot-hub/Quickstarts/read-d2c-messages/read_device_to_cloud_messages_sync.py -------------------------------------------------------------------------------- /iot-hub/Quickstarts/read-d2c-messages/requirements.txt: -------------------------------------------------------------------------------- 1 | azure-eventhub 2 | -------------------------------------------------------------------------------- /iot-hub/Quickstarts/simulated-device-2/SimulatedDeviceAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/iot-hub/Quickstarts/simulated-device-2/SimulatedDeviceAsync.py -------------------------------------------------------------------------------- /iot-hub/Quickstarts/simulated-device-2/SimulatedDeviceSync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/iot-hub/Quickstarts/simulated-device-2/SimulatedDeviceSync.py -------------------------------------------------------------------------------- /iot-hub/Quickstarts/simulated-device/SimulatedDeviceAsync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/iot-hub/Quickstarts/simulated-device/SimulatedDeviceAsync.py -------------------------------------------------------------------------------- /iot-hub/Quickstarts/simulated-device/SimulatedDeviceSync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/azure-iot-samples-python/HEAD/iot-hub/Quickstarts/simulated-device/SimulatedDeviceSync.py --------------------------------------------------------------------------------