AWS

Process AWS DynamoDB Streams by AWS Lambda with Terraform

This article discusses how we can tregger a AWS Lambda function from DynamoDB tables using DynamoDB Streams.

Read
Python

Some Cool New Features of Python 3.9

Python 3.9 is released on 5th October, 2020 and is now available. It comes with some of the great features and lots of improvements.

Read
AWS

Invoke AWS Lambda from AWS Step Functions with Terraform

AWS Lambda and AWS Step Functions begins a new era in serverless computing. In this article we will build an infrastructure using terraform that will have an AWS Lambda and an AWS step functions running on it.

Read
Python

From CSV to Google Sheet Using Python

Upload a CSV file to Google Spread Sheet using python. In this article we have used a Python library gspread. gspread is a Python API for Google Sheets.

Read
Python

Structure Your Project with Flask Blueprint

Blueprint is a way to organize related code in the same module. Blueprint allows us to simplify complex project by dividing it in smaller modules.

Read
Python

Flask with SQLAlchemy & Marshmallow

In the article we will build a simple REST API using Flask, SQLAlchemy and Marshmallow. We will be building a note taking application where these two API endpoints /note/ and /note/<id>/ will be available.

Read