Author Archive


How to Use Azure CosmosDB Management API SDK for Python

Azure provides an excellent portal for managing various cloud resources. If you are working with CosmosDB database accounts, you will be familiar with the powerful interface available in Azure portal. Sometimes you may need to access some of the CosmosDB management features programatically. If you plan to build something on the command line, you can […]

How to Create LRU Cache in Python

What is an LRU Cache? For any software product, application performance is one of the key quality attributes. One common technique used for improving performance of a software application is to use memory cache. A memory cache puts frequently used application data in the fast RAM of the computing device. Reading or writing data to […]

How to Download Blobs from Azure Storage Using Python

Azure blob storage offers a cheap and reliable solution for storing large amounts of unstructured data(such as images). Blob storage has no hierarchical structure, but you can emulate folders using blob names with slashes(/) in it. In this article, I will explore how we can use the Azure Python SDK to bulk download blob files […]

How to Upload Files to Azure Storage Blobs Using Python

Azure storage blobs offers a very cost effective and fast storage solution for unstructured data. It is an ideal solution if you want serve content such as images. It is also possible to speed up content delivery performance using Azure CDN service with it. Before running the following programs, ensure that you have the pre-requisites […]

How to Change Content Type of Azure Storage Blobs Using Python SDK

Microsoft Azure cloud platform offers a comprehensive portfolio of storage services. Each of these services is suitable for specific use cases. Here is a quick overview of Azure storage services, Azure Storage Account – Azure storage account can be used for a wide variety of workloads. Using this account, it is possible to create blob […]