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

* Fixed #123 split RkiBundeslaenderService into two Services, one for...

* Fixed #123 split RkiBundeslaenderService into two Services, one for bundeslaender and one for landkreise
* Fixed #128 add fields from csv to RkiLandkreiseImport
* Fixed #139 refactor RkiBundeslaenderServiceDownload to new method scheme introduced 07.02.2021
* Fixed #140 move WhoImport to RKI in: rk_service_import.py
* Fixed #125 implement RkiLandkreise
* Fixed #126 implement RkiBundeslaenderImport
parent a9ca7b3d
Branches
Tags
No related merge requests found
......@@ -9,7 +9,8 @@ from covid19.blueprints.common.common_model_transient import ApplicationPage
drop_and_create_data_again = True
app_rki_bundeslaender = Blueprint('rki_bundeslaender', __name__, template_folder='templates')
app_rki_bundeslaender = Blueprint(
'rki_bundeslaender', __name__, template_folder='templates', url_prefix='/rki/bundeslaender')
##################################################################################################################
......
......@@ -13,7 +13,6 @@ class RkiLandkreiseService:
app.logger.debug(" RkiLandkreiseService [init]")
app.logger.debug("------------------------------------------------------------")
self.__database = database
self.limit_nr = 20
self.service_download = RkiLandkreiseServiceDownload(database)
self.service_import = RkiLandkreiseServiceImport(database)
self.service_update = RkiLandkreiseServiceUpdate(database)
......
......@@ -11,7 +11,8 @@ from covid19.blueprints.common.common_model_transient import ApplicationPage
drop_and_create_data_again = True
app_rki_landkreise = Blueprint('rki_landkreise', __name__, template_folder='templates')
app_rki_landkreise = Blueprint(
'rki_landkreise', __name__, template_folder='templates', url_prefix='/rki/landkreise')
##################################################################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment