Access google sheets for private domains using domain-wide delegation of authority

Recently, I came across a situation where I needed to access a google sheet programmatically. I was pretty happy since I have done this before using my personal account. I also have an article written on it. Check it out here. So during the process when I shared the client_email to the google sheet, I … Read more

Split a list into multiple lists and save as file using python

Recently, in one of my projects I have had this small task where I need to split a list into multiple lists and save it as a file in Amazon S3. In this article, I will share the solution along with the code. So, the straight solution is the following piece of code. Let us … Read more

Add layers, troubleshoot and common mistakes in AWS lambda

AWS Lambda provides an amazing feature called the layer which allows you to add your custom library. It allows you to stop code repetition. In this article, we are going to see how to achieve this. In case you are someone new to AWS then take a look at this article to know what AWS … Read more

Send HTML webpage as an email along with an attachment file using python SMTP

Let us see how to send a webpage as an email along with an attachment file using python SMTP. Previously, I have covered how to send plain text email using python SMTP.  Import statement import smtplib from email.mime.multipart import MIMEMultipart from email.mime.application import MIMEApplication from email.mime.text import MIMEText import os The smtplib is responsible for … Read more

Google sheets automation using python for free

Google sheets are commonly used by many people. In this article, I am going to show you how I used python in order to automate the google sheets. Let’s get started!! In my previous article, I shared how to use your Gmail to send emails programmatically. Let’s imagine you have a google sheet named, “Daily … Read more

Amazon Pay integration with Alexa using python

Alexa is one of the most exciting technologies to work with. In this article, I will be sharing how to integrate Amazon pay with Alexa using python. If you are someone new to Alexa skill development, check out the basics of Alexa skill development. Recently I had a requirement to integrate Amazon Pay into my … Read more

What is Amazon DynamoDB? How to get started?

Amazon DynamoDB is a NoSQL database that is fast and flexible for any scale. I have personally been using it for more than 2 years and in this article, I am going to share with you my experience with it. In case you are someone new to AWS then take a look at this article … Read more

How to use Udemy to learn a course without spending money

As a programmer, you need to be updated on your field and it is natural that we rely more on Youtube. And that is also perfectly fine. But have you ever thought about why does someone need to buy a course when everything is already available? And in most cases, you would see the same … Read more