diff --git a/datapackage.json b/datapackage.json index f57d0f4..54e255c 100644 --- a/datapackage.json +++ b/datapackage.json @@ -1,7 +1,8 @@ { "bytes": 1465368, "count_of_rows": 28920, - "hash": "0645dcfca5d10e757252920dbcdbe67d", + "hash": "ac80ca047703880c26c97d8a6dc73df8", + "name": "covid-19", "profile": "data-package", "resources": [ { @@ -79,5 +80,6 @@ ] } } - ] + ], + "title": "Novel Coronavirus 2019" } \ No newline at end of file diff --git a/process.py b/process.py index 546b77e..0177661 100644 --- a/process.py +++ b/process.py @@ -1,4 +1,4 @@ -from dataflows import Flow, load, unpivot, find_replace, set_type, dump_to_path, update_resource, join, add_computed_field, delete_fields +from dataflows import Flow, load, unpivot, find_replace, set_type, dump_to_path, update_package, update_resource, join, add_computed_field, delete_fields BASE_URL = 'https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/' CONFIRMED = 'time_series_19-covid-Confirmed.csv' @@ -57,5 +57,6 @@ Flow( ), delete_fields(['Case']), update_resource('time_series_19-covid-Deaths', name='time-series-19-covid-combined', path='time-series-19-covid-combined.csv'), + update_package(name='covid-19', title='Novel Coronavirus 2019'), dump_to_path() ).results()[0]