From 6024877690099d34470937232ce960ecf48a514a Mon Sep 17 00:00:00 2001 From: anuveyatsu Date: Sun, 22 Mar 2020 22:27:58 +0600 Subject: [PATCH] [metadata][xs]: add 'name' and 'title' properties to datapackage.json. --- datapackage.json | 6 ++++-- process.py | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) 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]