Deploying your Python Script to Lambda - Part 2

Posted on Wed 26 February 2020 in Python_Automation • Tags python, aws, webscraping, lambda

After successfully creating our script, we will be using the AWS Lambda service to deploy the script. This article walks you through the process of setting up the lambda function.


Continue reading

Creating a Python Love Poem

Posted on Tue 25 February 2020 in Python_Automation • Tags python, cron, webscraping, api

We'll be writing a python script that sends messages as part of a poem to our loved ones every hour, reminding them how much they are loved. This will be done by scraping a website using the beautiful soup library, the Twilio API to send the messages, and the script will be deployed on AWS lambda.


Continue reading

Customizing your Pelican Static Site

Posted on Tue 28 January 2020 in Web_Development • Tags python, pelican

This is the second article in the series "Creating a Personal Static Website with Pelican". This article covers modifying your site design using templates and pelican plugins.


Continue reading

Creating a Personal Static Website with Pelican

Posted on Mon 20 January 2020 in Web_Development • Tags python, pelican

The process of creating a personal blog can be a daunting task, as there are a lot of over engineered-options for running a simple blog. This article walks you through the process of getting your blog up and running through the use of a Static site generator which is known for its simplicity and performance.


Continue reading

Automating Project Setup with Bash

Posted on Fri 17 January 2020 in Bash_Automation • Tags bash, git

The new project script is a tool that was created to simplify the process of starting a new project by automating creating your project folder and GitHub repo using the GitHub API. Hopefully, this saves you some time and simplifies your Git management.


Continue reading