covid-19-analysis/Main.py
Patrick Müller bd0bf56a1a 🐛 Fixed data fetcher
- Those fucking idiots at data.europa.eu somehow managed to fuck the data up by including some random string at the very beginning of the csv file.
- Also some small changes impacting performance
2020-03-31 16:24:42 +02:00

15 lines
320 B
Python

# -*- coding: utf-8 -*-
"""
Project: Analyse worldwide COVID-19 Data and provide graphs etc.
@author Patrick Müller
"""
import DataFetcher as fetcher
import Analyser as ana
import UserInterface as UI
if __name__ == '__main__':
fetcher.updateStatsFile()
ana.Analyser().testGraph('Germany', showPlot=True)
UI.main()