X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=python.git;a=blobdiff_plain;f=covid19.py;fp=covid19.py;h=beccb9bc75d79d27a4a297b6d8c34171c3216e63;hp=3d8090744c2756aa831003d3fc10852d2bf516bc;hb=92995b4eac3262d2afae297b39560fe5adf0f355;hpb=b55010b86eeb295895fc03cff5cbd41948e845ee diff --git a/covid19.py b/covid19.py index 3d80907..beccb9b 100755 --- a/covid19.py +++ b/covid19.py @@ -23,7 +23,7 @@ def gentle_download(url, delay = 86400): ###################################################################### nbcases_filename = gentle_download( - 'https://github.com/CSSEGISandData/COVID-19/raw/master/csse_covid_19_data/csse_covid_19_time_series/time_series_19-covid-Confirmed.csv' + 'https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv' ) ###################################################################### @@ -43,7 +43,7 @@ with open(nbcases_filename, newline='') as csvfile: if not country in nb_cases: nb_cases[country] = numpy.zeros(len(times)) elif col_nb >= time_col: - if field == '': field = '0' + # if field == '': field = '0' nb_cases[country][col_nb - time_col] += int(field) countries = list(nb_cases.keys())