Lambda runs your code on a high-availability compute infrastructure and performs all of the administration of the compute resources, including server and operating system maintenance, capacity provisioning and automatic scaling, and logging. Three components of AWS Lambda: A function. This is the actual code that performs the task. A configuration.…
Tag: 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…
Using API Gateway to trigger a Lambda function to send messages to the Queue
In this blog, I’ll show you how to incorporate several AWS services into a simple, serverless workflow. The idea is to create an SQS queue, then using an HTTP API to trigger a Lambda function that sends messages to the queue. What is serverless computing? Serverless computing is a means of offering on-demand backend services. Users may use…
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.…
DynamoDB using Python SDK
In this blog post we will look at the working of the DynamoDB using Python SDK Boto3. I will be also covering the overview of DynamoDB and accessing the Dynamo DB using AWS Console, AWS CLI and finally through Python SDK. Also, we would be seeing a AWS service called…
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…
How to trigger a lambda function when a DynamoDB table is modified
This blog will take you through step-by-step instructions on how to trigger a lambda function when the records in the DynamoDB table are updated, created, or deleted on AWS. To follow along with this tutorial, you would need to set up an account with AWS. Instructions to set up an…
Lambda function triggered by an S3 PUT event to sort XML files in an S3 bucket
Serverless functions allow code to be delivered without you designating any infrastructure for the code to be hosted on. AWS Lambda is a FaaS (Function as a Service) platform that allows you to construct serverless functions. Go, Java, Ruby, Python2 and Python3 are just a few of the popular programming languages that AWS Lambda supports. In this blog, we will be using Python3.
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,…