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…
Category: Topics
A collection of topics in cloud computing.
How to build serverless API with Azure Function
Hola! Cloud Computing Clan (CCC), In this blog, I intend in walking you through building serverless API with Azure Functions. Before we go into the practical stuff, let us first understand what Azure Functions are. What is an Azure Function? Azure Functions allows for the effective execution of small pieces…
Call an API with AWS Lambda and Python SDK
Do you have an API that is called regularly? AWS Lambda functions have the ability to call an API on a regular schedule. What if you need to store the data behind that API too? Well, Lambda can also help store your data in s3 for the long term. Using…
Blog 2: Copy an object from one AWS S3 Bucket to another S3 Bucket using Python SDK
In this article, we are going to take a look at how to copy an object from one AWS S3 Bucket to another S3 Bucket using Boto3 python software development kit (SDK). Terminologies AWS S3 bucket An Amazon S3 bucket is a public cloud storage resource available in Amazon Web Services’ (AWS)…
Reading data from text file in S3 and storing in DynamoDB using Lambda function
We will be learning on how to read data from text file stored in S3 bucket with the help of lambda function and then we will store those values in our DynamoDB. Before starting with the process I will be telling you overview of S3 bucket, DynamoDB and lambda function.…
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.
Using python SDK to create S3 bucket, upload and download files from S3 bucket
This blog post will focus on creating the S3 bucket, uploading a file and downloading a file from the S3 bucket. AWS SDK for Python (Boto3) makes it easy to integrate your Python application to create, configure, and manage AWS services, such as Amazon Elastic Compute Cloud (Amazon EC2) and…
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…