i am using AWS SqS and as part of migration to Azure i am testing Azure testing Azure queue and also rabbitmq . the App is in python so what is the most similar ?
01 Answer
There are many alternative available, i would recommend you to use Service bus queue.
from azure.servicebus import QueueClient, Message Create the QueueClient
queue_client = QueueClient.from_connection_string("<CONNECTION STRING>", "<QUEUE NAME>") Send a test message to the queue
msg = Message(b'Test Message') queue_client.send(msg) Here is the documentation on how to get started with python.