Skip to content
Snippets Groups Projects
Commit f66e3cae authored by thomaswoehlke's avatar thomaswoehlke
Browse files

### 0.0.8 Release

* Issue #13 /who/imported/
* Issue #14 /europe/imported/
* Issue #3 ORM: 3NF for ecdc_europa_data_import
* Issue #4 data update for 3NF ecdc_europa_data_import
parent 91a5221b
No related branches found
No related tags found
No related merge requests found
......@@ -6,17 +6,15 @@ class EuropeDataImportTable(db.Model):
id = db.Column(db.Integer, primary_key=True)
date_rep = db.Column(db.String(255), nullable=False)
day = db.Column(db.String(255), nullable=False)
month = db.Column(db.String(255), nullable=False)
year = db.Column(db.String(255), nullable=False)
cases = db.Column(db.String(255), nullable=False)
deaths = db.Column(db.String(255), nullable=False)
year_week = db.Column(db.String(255), nullable=False)
cases_weekly = db.Column(db.String(255), nullable=False)
deaths_weekly = db.Column(db.String(255), nullable=False)
pop_data_2019 = db.Column(db.String(255), nullable=False)
countries_and_territories = db.Column(db.String(255), nullable=False)
geo_id = db.Column(db.String(255), nullable=False)
country_territory_code = db.Column(db.String(255), nullable=False)
continent_exp = db.Column(db.String(255), nullable=False)
cumulative_number_for_14_days_of_covid19_cases_per_100000 = db.Column(db.String(255), nullable=False)
notification_rate_per_100000_population_14days = db.Column(db.String(255), nullable=False)
@classmethod
def remove_all(cls):
......
......@@ -35,15 +35,15 @@ class EuropeServiceImport:
for row in file_reader:
o = EuropeDataImportTable(
date_rep=row['dateRep'],
year=row['year_week'],
cases=row['cases_weekly'],
deaths=row['deaths_weekly'],
year_week=row['year_week'],
cases_weekly=row['cases_weekly'],
deaths_weekly=row['deaths_weekly'],
countries_and_territories=row['countriesAndTerritories'],
geo_id=row['geoId'],
country_territory_code=row['countryterritoryCode'],
pop_data_2019=row['popData2019'],
continent_exp=row['continentExp'],
cumulative_number_for_14_days_of_covid19_cases_per_100000
notification_rate_per_100000_population_14days
=row['notification_rate_per_100000_population_14-days']
)
db.session.add(o)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment