Building a custom Alexa skill using AWS Lambda.
Amazon Alexa Skills Kit SDK using Python
To build our own skill using Alexa Skills Kit SDK using Python.
How to use Python to create, write to, and delete files in an Azure storage container
In this post we learn how to use the Azure Blob Storage client library for Python to create a container and a blob in Blob (object) …
Robot Process Automation with UiPath
Hello! This bog is your entry gate to the world of Robot Process Automation (RPA) and enterprise automation. You’ve probably heard people talking about RPA and automation. You’ve probably read about them. Maybe your organization started using them. Or maybe you just want to be ready for tomorrow’s work…
How To Create A Serverless REST API Gateway With Python And AWS Lambda
In this article, we’re going to create a REST API gateway endpoint which is going to invoke a lambda function and return JSON back to the client by doing the following: Creating a API Gateway and Lambda function. Establishing a connection between Lambda function and API gateway. Managing access to…
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 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.…