2020-03-28 11:37:54 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
Project: Analyse worldwide COVID-19 Data and provide graphs etc.
|
|
|
|
|
|
|
|
@author Patrick Müller
|
|
|
|
"""
|
|
|
|
import DataFetcher as fetcher
|
2020-03-29 20:23:30 +00:00
|
|
|
import UserInterface as UI
|
2020-03-28 11:37:54 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2020-03-29 09:45:00 +00:00
|
|
|
fetcher.updateStatsFile()
|
2020-03-29 20:23:30 +00:00
|
|
|
UI.main()
|