13 lines
245 B
Python
13 lines
245 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Project: Analyse worldwide COVID-19 Data and provide graphs etc.
|
|
|
|
@author Patrick Müller
|
|
"""
|
|
import DataFetcher as fetcher
|
|
import UserInterface as UI
|
|
|
|
if __name__ == '__main__':
|
|
fetcher.updateStatsFile()
|
|
UI.main()
|