I wanna run a simple Azure service bus program, I received the below error: As I search on the internet, I should install Azure service bus and also I installed. My Python version: 3.8.9 My pip freeze: My code: Answer This problem is caused by incompatible versions. You can install the lower version of azure.servicebus:
Tag: azureservicebus
Azure ServiceBus using async/await in Python seems not to work
I’m trying to read messages from Azure ServiceBus Topics using async/await and then forward the content to another application via HTTP. My code is simple: I want to look for messages (forever) from various topics and when a message arrives send the POST. I import the aio package from azure which should work in an async way. After many attempts,