In this exercise, you use postman to hit the demo application(storefront) APIs which are written using the Python Django REST framework. For this exercise, I have used Azure Cloud Service and a similar methodology can be followed for AWS. Prerequisites You have to complete hop1 Azure and hop2 Azure Why…
Tag: Azure
Azure Logic Apps to create an automated workflow to implement RSS feed of a website to email account.
Summary: In this blog we are going to create an automated workflow that integrates two services, an RSS feed for a website and an email account using Azure Logic Apps. What is Azure Logic Apps? Azure Logic Apps offers low-code/no-code tools for you to create highly scalable integration solutions for…
Azure File Share: Basic Management with Python SDK
Within Azure, file shares (fileshares) are one of the two chief systems of cloud storage, the other being blob storage. This guide will walk through an example of how the Python SDK can be used to manage your files in an Azure file share. We will walk through a Python…
Timer Trigger Operation ⏲️
Objective: To understand the working of Timer Trigger. In addition to building and invoking a python function schedule to print every 15s. Prerequisite: Python 3.8 – Python 3.10 (Python 3.11 is not supported yet.) Azure Core Tools – Download azure core tools from here VS Code Step 1: Open VS…
Operations On Azure Blob using Python
In this blog, We’ll look at how to use Python to discard a file into an Azure Blob and copy it from one container to another. What are Blobs? Blobs are objects that can store large amounts of text or binary data such as images, documents, multimedia, and archive data.…
Using Python SDK to create & insert queries in Azure MySQL database
The blog provides the concept of creating database and inserting data into Azure MySQL with PythonSDK.
Working with Azure Timer Trigger function and Power Query
Hello, today we’ll be looking at creating a Timer Trigger function in Azure to capture RSS Feed data and display the captured information in Excel using Power Query. Here are the list of things required before we get started: Valid Azure subscription Working Virtual Machine with Python and VS Code…
Azure Cache for Redis in Python
This article describes how to integrate Azure Cache for Redis into a Python application to gain access to a private, dedicated cache that can be accessed from any Azure application. Create an Azure Cache for Redis Instance Log in to the Azure portal and click on create Resource. Choose Databases,…
How To Upload File To Azure Blob Using Python
You can follow along with this article as it walks you through each step of uploading a file to Azure blob storage using Python SDK from Visual Studio Code. One needs a working Azure membership and a Python code editor to get started with this. Let’s start by creating an…
Write Serverless Logic Using Azure Functions
Serverless computing enables you to create and maintain applications and services without thinking about servers. It can be compared to a microservice or function as a service that is housed on a cloud computing platform. Azure Functions is a serverless application platform. It gives programmers the ability to host business…