######################################################################
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'
)
######################################################################
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())