How to schedule AWS Athena queries using Amazon EventBridge, AWS Lambda, and Boto3 by AWS Python SDK
Tag: Serverless Computing
Serverless Mass Emailing with AWS Lambda
AWS Lambda is a robust event-driven platform for serverless use-cases, one of which may be mass emailing. We will walk through the creation of such a function on AWS. We want to facilitate this sequence of events: A user uploads a .csv file with email data to cloud storage (we’ll…
AWS Serverless : API Gateway using Lambda
Topics Covered in this BLOG 1.What is an API ? 2.What is AWS API Gateway? 3.Who uses API Gateway? 4.Building an API Gateway using Lambda API API stands for “Application Programming Interface.” It is a set of rules and protocols that define how two or more software applications can interact…
Connecting to AWS Athena Database using Python
AWS Athena is a service that lets you build databases on and query the data from the data files stored on S3 storage buckets
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…
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…
Extract Zip files in an S3 bucket using the Lambda function
How to extract Zip files from the S3 bucket to the target bucket using the Lambda function.
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…
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…