Tutorials

COVID-19 Analytics Report Using Python 3 FPDF Pandas Plotly

Python 3 FPDF script to generate COVID-19 analytics report with Charts & Maps using pandas and plotly library.

Generate COVID-19 Analytics Report

In this article, we will use a GitHub repository to generate a COVID-19 analytics report. This repo goes along with a YouTube video “Generating an Analytics Report (PDF) in Python”. In it, we learn how to use the fpdf library to create a report like the one you see above.

Link to video: https://youtu.be/UmN2_R4KEg8

Setup

You’ll want to download all of this source code locally. The easiest way to do that is by cloning the repo.

git clone https://github.com/KeithGalli/generate-analytics-report.git

If you have any trouble doing this, you can download the .zip file of this repo and then extract the files to a local folder. Once you have all the files cloned locally, you should make sure you have all the necessary libraries installed.

pip install fpdf
pip install pandas numpy matplotlib
pip install plotly
pip install -U kaleido

If you run into an error with NumPy, changing the version to 1.19.3 fixed the issue for me.

pip install numpy==1.19.3

To test if everything is set up properly, try running python generate_report.py. You should get a fresh report file. You’ll have to change helper.py to read from the online version of the data if you want to access the previous day (uncomment the BASE_PATH URL and comment BASE_PATH=’./data’). You will also have to comment out the hard-coded date at the bottom of the generate_report.py file. I saved it this way so that not too many unnecessary requests to the GitHub server were made while testing.

Furqan

Well. I've been working for the past three years as a web designer and developer. I have successfully created websites for small to medium sized companies as part of my freelance career. During that time I've also completed my bachelor's in Information Technology.

Recent Posts

How can IT Professionals use ChatGPT?

If you're reading this, you must have heard the buzz about ChatGPT and its incredible…

September 2, 2023

ChatGPT in Cybersecurity: The Ultimate Guide

How to Use ChatGPT in Cybersecurity If you're a cybersecurity geek, you've probably heard about…

September 1, 2023

Add Cryptocurrency Price Widget in WordPress Website

Introduction In the dynamic world of cryptocurrencies, staying informed about the latest market trends is…

August 30, 2023

Best Addons for The Events Calendar Elementor Integration

The Events Calendar Widgets for Elementor has become easiest solution for managing events on WordPress…

August 30, 2023

Create Vertical Timeline in Elementor: A Step-by-step Guide

Introduction The "Story Timeline" is a versatile plugin that offers an innovative way to present…

August 30, 2023

TranslatePress Addon for Automate Page Translation in WordPress

Introduction In today's globalized world, catering to diverse audiences is very important. However, the process…

August 30, 2023