shlogg · Early preview
Oluwaseun Olaleye @heritageolaleye

Creating A Weather Dashboard With Python And AWS S3

Created a weather dashboard using Python & Weather API, storing data in an S3 bucket via AWS CLI on Ubuntu server. Utilized boto3 library for seamless integration.

USE CASE
My manager tasked me with creating a weather dashboard and storing it in an s3 bucket using weather API and python.
PREREQUISITES

Linux commands
Ubuntu server
AWS free tier account.
AWS CLI

Let's dive into it.
Firstly, I commenced by cloning a GitHub repository from https://github.com/ShaeInTheCloud/30days-weather-dashboard. This step enabled me to obtain a local copy of the repository's codebase.

Next. I installed all dependencies including Python. Then, I activated a virtual environment to isolate the project dependencies. With the virtual environment activated, i proceeded to in...