Plot covid stats like new cases, recovered and deaths every day and save into a csv file and plot the data through matplotlib.
haha, no need, as long as you have python installed, with the required library installed - matplotlib, it will run.
analyzer.log_data(new_cases, recovered, deaths)
analyzer.plot_data('data')
Eg.
analyzer.log_data(100, 50, 10)
analyzer.plot_data('new_cases')