Posts

Showing posts from December, 2021

Azure Message Queue in Python

Image
Hey, Fellow Developers!! In this blog I am going to write about Azure Message Queue and how you can use it in your Python project easily by following this blog. Let's dive into the blog without wasting much time. Table of contents What is an Azure Message Queue? Implement Azure Message Queue in Python 1. What is an Azure Message Queue? In simple terms as stated in Microsoft docs, Azure message queue is a service to store large number of messages. These messages can be accessed from anywhere in the world via authenticated HTTPS calls. This queue behaves the same as the queue data structure. The messages up to 64KB can be stored in message queue. It's highly scalable as it has the capacity to store millions of messages. 2. Implement Azure Message Queue in Python Let's dive into some code now. I assume that you have created an Azure storage account and have the connection string with you. 1. Establish connection and create a new queue To use the Azure queue client, first you n