Google calendar automation using python

Google Calendar is a time-management and scheduling calendar service developed by Google. It’s a popular tool used by individuals and businesses to manage their daily schedules and events. With the Google Calendar API, you can automate various tasks, such as adding events, retrieving events, and managing calendars. In this blog, we will discuss how to … Read more

ETL – Migrate the entire AWS DynamoDB table to Amazon S3 as CSV

In this article, I will show my method of migrating the entire AWS DynamoDB table to Amazon S3 as CSV. It can further be uploaded to Amazon Redshift using the COPY command. You can also find this code on my GitHub repository. In case you are going to run this code on the local machine, … Read more

ETL – Complete guide to migrate AWS DynamoDB to AWS Elasticsearch

If you are someone using AWS DynamoDB for your application and looking for ways to speed the query drastically then you could possibly arrive at AWS Elasticsearch. So you will have to migrate your existing DynamoDB data to Elasticsearch as well as keep both the databases in sync. That is exactly what I am going … Read more

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

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