I have devices sending data to an Azure IoT hub regularly (Not Azure Event hub).
I am trying to write something in Python running on the cloud which waits for these events / messages to arrive and then store data in a database.
There are classes and APIs for the Azure Python SDK which consume data from Event Hubs such as EventHubConsumerClient.receive
However. I am limited to just using an IoT hub in this case.
What can I do to consume / ingest data from an Azure IoT hub? I'm a little bit lost with this. Thanks in advance.