From 3261aed9ac3792f232b56f749194c6e5f11cd215 Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Sun, 7 Feb 2021 23:13:20 +0100 Subject: [PATCH] sprint planning --- CHANGES.md => BACKLOG.md | 16 +++++++++- .../vaccination/vaccination_service.py | 8 ++--- .../vaccination_service_download.py | 2 +- .../vaccination/vaccination_service_import.py | 2 +- .../vaccination/vaccination_service_update.py | 32 +++++++++---------- 5 files changed, 37 insertions(+), 23 deletions(-) rename CHANGES.md => BACKLOG.md (85%) diff --git a/CHANGES.md b/BACKLOG.md similarity index 85% rename from CHANGES.md rename to BACKLOG.md index 5c30ada3..7666cb3a 100644 --- a/CHANGES.md +++ b/BACKLOG.md @@ -144,6 +144,21 @@ * Issue #91 implement VaccinationService.run_download_only * Issue #92 implement VaccinationService.run_import_only * Issue #93 implement VaccinationService.run_update_dimension_tables_only +* Issue #94 implement VaccinationService.run_update_fact_table_incremental_only +* Issue #95 implement VaccinationService.run_update_fact_table_initial_only +* Issue #96 implement VaccinationService.run_update_star_schema_incremental +* Issue #97 implement VaccinationService.run_update_star_schema_initial +* Issue #98 refactor VaccinationServiceDownload to new method scheme introduced 07.02.2021 +* Issue #99 refactor VaccinationServiceImport to new method scheme introduced 07.02.2021 +* Issue #100 refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 +* Issue #101 implement VaccinationsServiceUpdate.update_dimension_tables_only +* Issue #102 implement VaccinationsServiceUpdate.update_fact_table_incremental_only +* Issue #103 implement VaccinationsServiceUpdate.update_fact_table_initial_only +* Issue #104 implement VaccinationsServiceUpdate.update_star_schema_incremental +* Issue #105 implement VaccinationsServiceUpdate.update_star_schema_initial +* Issue +* Issue +* Issue * Issue * Issue * Issue @@ -154,6 +169,5 @@ * Issue * Issue * Issue - diff --git a/src/covid19/blueprints/vaccination/vaccination_service.py b/src/covid19/blueprints/vaccination/vaccination_service.py index b73d7f31..a9862e81 100644 --- a/src/covid19/blueprints/vaccination/vaccination_service.py +++ b/src/covid19/blueprints/vaccination/vaccination_service.py @@ -45,22 +45,22 @@ class VaccinationService: def run_update_fact_table_incremental_only(self): # TODO: #90 refactor VaccinationService to new method scheme introduced 07.02.2021 - # TODO: implement VaccinationService.run_update_fact_table_incremental_only + # TODO: #94 implement VaccinationService.run_update_fact_table_incremental_only return self def run_update_fact_table_initial_only(self): # TODO: #90 refactor VaccinationService to new method scheme introduced 07.02.2021 - # TODO: implement VaccinationService.run_update_fact_table_initial_only + # TODO: #95 implement VaccinationService.run_update_fact_table_initial_only return self def run_update_star_schema_incremental(self): # TODO: #90 refactor VaccinationService to new method scheme introduced 07.02.2021 - # TODO: implement VaccinationService.run_update_star_schema_incremental + # TODO: #96 implement VaccinationService.run_update_star_schema_incremental return self def run_update_star_schema_initial(self): # TODO: #90 refactor VaccinationService to new method scheme introduced 07.02.2021 - # TODO: implement VaccinationService.run_update_star_schema_initial + # TODO: #97 implement VaccinationService.run_update_star_schema_initial return self # TODO: #90 refactor VaccinationService to new method scheme introduced 07.02.2021 diff --git a/src/covid19/blueprints/vaccination/vaccination_service_download.py b/src/covid19/blueprints/vaccination/vaccination_service_download.py index c6511421..0b8a891c 100644 --- a/src/covid19/blueprints/vaccination/vaccination_service_download.py +++ b/src/covid19/blueprints/vaccination/vaccination_service_download.py @@ -5,7 +5,7 @@ from database import app from covid19.blueprints.vaccination.vaccination_service_config import VaccinationServiceDownloadConfig -# TODO: refactor VaccinationServiceDownload to new method scheme introduced 07.02.2021 +# TODO: #98 refactor VaccinationServiceDownload to new method scheme introduced 07.02.2021 class VaccinationServiceDownload: def __init__(self, database): app.logger.debug("------------------------------------------------------------") diff --git a/src/covid19/blueprints/vaccination/vaccination_service_import.py b/src/covid19/blueprints/vaccination/vaccination_service_import.py index a0c251be..61bb7e93 100644 --- a/src/covid19/blueprints/vaccination/vaccination_service_import.py +++ b/src/covid19/blueprints/vaccination/vaccination_service_import.py @@ -7,7 +7,7 @@ from covid19.blueprints.vaccination.vaccination_model_import import VaccinationG from covid19.blueprints.vaccination.vaccination_service_config import VaccinationServiceDownloadConfig -# TODO: refactor VaccinationServiceImport to new method scheme introduced 07.02.2021 +# TODO: #99 refactor VaccinationServiceImport to new method scheme introduced 07.02.2021 class VaccinationServiceImport: def __init__(self, database): app.logger.debug("------------------------------------------------------------") diff --git a/src/covid19/blueprints/vaccination/vaccination_service_update.py b/src/covid19/blueprints/vaccination/vaccination_service_update.py index 73ed9b4a..ce5a1584 100644 --- a/src/covid19/blueprints/vaccination/vaccination_service_update.py +++ b/src/covid19/blueprints/vaccination/vaccination_service_update.py @@ -5,7 +5,7 @@ from covid19.blueprints.vaccination.vaccination_model_import import VaccinationG from covid19.blueprints.vaccination.vaccination_model import VaccinationDateReported, VaccinationGermanyTimelineAAA -# TODO: refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 +# TODO: #100 refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 class VaccinationsServiceUpdate: def __init__(self, database): app.logger.debug("------------------------------------------------------------") @@ -16,7 +16,7 @@ class VaccinationsServiceUpdate: app.logger.debug("------------------------------------------------------------") app.logger.debug(" Europe Service Update [ready] ") - # TODO: refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 + # TODO: #100 refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 def __update_date_reported(self): app.logger.info(" __update_date_reported [begin]") app.logger.info("------------------------------------------------------------") @@ -36,7 +36,7 @@ class VaccinationsServiceUpdate: app.logger.info("------------------------------------------------------------") return self - # TODO: refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 + # TODO: #100 refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 def __update_data_initial(self): app.logger.info(" __update_data_initial [begin]") app.logger.info("------------------------------------------------------------") @@ -77,7 +77,7 @@ class VaccinationsServiceUpdate: app.logger.info("------------------------------------------------------------") return self - # TODO: refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 + # TODO: #100 refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 def __update_data_short(self): app.logger.info(" __update_data_initial [begin]") app.logger.info("------------------------------------------------------------") @@ -86,7 +86,7 @@ class VaccinationsServiceUpdate: app.logger.info("------------------------------------------------------------") return self - # TODO: refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 + # TODO: #100 refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 def update_db_initial(self): app.logger.info(" update_db_initial [begin]") app.logger.info("------------------------------------------------------------") @@ -98,7 +98,7 @@ class VaccinationsServiceUpdate: app.logger.info("------------------------------------------------------------") return self - # TODO: refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 + # TODO: #100 refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 def update_db_short(self): app.logger.info(" update_db_short [begin]") app.logger.info("------------------------------------------------------------") @@ -111,26 +111,26 @@ class VaccinationsServiceUpdate: return self def update_dimension_tables_only(self): - # TODO: implement VaccinationsServiceUpdate.update_dimension_tables_only - # TODO: refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 + # TODO: #101 implement VaccinationsServiceUpdate.update_dimension_tables_only + # TODO: #100 refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 return self def update_fact_table_incremental_only(self): - # TODO: implement VaccinationsServiceUpdate.update_fact_table_incremental_only - # TODO: refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 + # TODO: #102 implement VaccinationsServiceUpdate.update_fact_table_incremental_only + # TODO: #100 refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 return self def update_fact_table_initial_only(self): - # TODO: implement VaccinationsServiceUpdate.update_fact_table_initial_only - # TODO: refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 + # TODO: #103 implement VaccinationsServiceUpdate.update_fact_table_initial_only + # TODO: #100 refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 return self def update_star_schema_incremental(self): - # TODO: implement VaccinationsServiceUpdate.update_star_schema_incremental - # TODO: refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 + # TODO: #104 implement VaccinationsServiceUpdate.update_star_schema_incremental + # TODO: #100 refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 return self def update_star_schema_initial(self): - # TODO: implement VaccinationsServiceUpdate.update_star_schema_initial - # TODO: refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 + # TODO: #105 implement VaccinationsServiceUpdate.update_star_schema_initial + # TODO: #100 refactor VaccinationsServiceUpdate to new method scheme introduced 07.02.2021 return self -- GitLab