The azure-eventhub (1.3.2)
lib for python only allows users to send and consume messages from Azure EventHub.
Use the Event Hubs client library for Python to:
Publish events to the Event Hubs service through a sender.
Read events from the Event Hubs service through a receiver.
For conception and debugging purposes, I tried using the querying console available on the Azure portal but the experience was... unproductive (multiple crashes, reloads, etc.). Is there a way to execute steaming analytics queries from python code?
Example query:
SELECT
[event],
DATEDIFF(...)
INTO
[Output]
FROM
[input] TIMESTAMP BY Time