diff --git a/.gitignore b/.gitignore
index f6f4d5f7c38367532f4bcc9abf7b8c3c70e2f7db..561c7b7ed2a0bb89bd51d8944a3330e9ed337625 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1132,9 +1132,9 @@ Debug*/Debug*\ Libs
 /requirements/req_tests.py
 /dump.rdb
 /1.0.0
-/src/covid19/blueprints/owid/x.py
-/src/covid19/blueprints/owid/x2.py
-/src/covid19/blueprints/owid/x3.py
+/src/flask_covid19/blueprints/owid/x.py
+/src/flask_covid19/blueprints/owid/x2.py
+/src/flask_covid19/blueprints/owid/x3.py
 /.checkmate/
 /lsp/
 dump.rdb
@@ -1145,6 +1145,6 @@ dump.rdb
 /logfile4.txt
 /logfile5.txt
 /logfile*.txt
-/src/covid19/static/vendor/
+/src/flask_covid19/static/vendor/
 /.checkmate
 /.run
diff --git a/src/covid19/__init__.py b/src/covid19/__init__.py
deleted file mode 100644
index 8602185819ecd70e1286bc995c8d82c1804590fa..0000000000000000000000000000000000000000
--- a/src/covid19/__init__.py
+++ /dev/null
@@ -1,12 +0,0 @@
-from database import app, run_run_with_debug, port, db
-
-import covid19.blueprints.app_application.application_views
-from covid19.blueprints.app_all.all_services import app_user_service
-from covid19.blueprints.app_application.application_service import ApplicationService
-
-
-def run_web():
-    application_service = ApplicationService(db, app_user_service)
-    application_service.prepare_run_web()
-    app.run(debug=run_run_with_debug, port=port)
-
diff --git a/src/covid19/blueprints/app_all/all_services.py b/src/covid19/blueprints/app_all/all_services.py
deleted file mode 100644
index a595c9522419e2b1c749424c249790f936356229..0000000000000000000000000000000000000000
--- a/src/covid19/blueprints/app_all/all_services.py
+++ /dev/null
@@ -1,29 +0,0 @@
-from database import db
-
-from covid19.blueprints.app_admin.app_admin_service import AdminService
-from covid19.blueprints.app_all.all_service import AllService
-from covid19.blueprints.app_user.user_service import UserService
-from covid19.blueprints.ecdc.ecdc_service import EcdcService
-from covid19.blueprints.owid.owid_service import OwidService
-from covid19.blueprints.rki_vaccination.rki_vaccination_service import RkiVaccinationService
-from covid19.blueprints.who.who_service import WhoService
-from covid19.blueprints.divi.divi_service import DiviService
-from covid19.blueprints.rki_cases.rki_service import RkiService
-
-############################################################################################
-#
-# Services
-#
-app_admin_service = AdminService(db)
-app_user_service = UserService(db)
-
-who_service = WhoService(db)
-owid_service = OwidService(db)
-ecdc_service = EcdcService(db)
-rki_vaccination_service = RkiVaccinationService(db)
-rki_service = RkiService(db)
-divi_service = DiviService(db)
-
-all_service = AllService(who_service, owid_service, ecdc_service, rki_vaccination_service, rki_service, divi_service)
-
-db.create_all()
diff --git a/src/covid19/Gruntfile.js b/src/flask_covid19/Gruntfile.js
similarity index 100%
rename from src/covid19/Gruntfile.js
rename to src/flask_covid19/Gruntfile.js
diff --git a/src/flask_covid19/__init__.py b/src/flask_covid19/__init__.py
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..c5688473fef824a5666ff5b2409616c9272e03eb 100644
--- a/src/flask_covid19/__init__.py
+++ b/src/flask_covid19/__init__.py
@@ -0,0 +1,12 @@
+from database import app, run_run_with_debug, port, db
+
+import flask_covid19.blueprints.app_application.application_views
+from flask_covid19 import app_user_service
+from flask_covid19 import ApplicationService
+
+
+def run_web():
+    application_service = ApplicationService(db, app_user_service)
+    application_service.prepare_run_web()
+    app.run(debug=run_run_with_debug, port=port)
+
diff --git a/src/covid19/blueprints/__init__.py b/src/flask_covid19/blueprints/__init__.py
similarity index 100%
rename from src/covid19/blueprints/__init__.py
rename to src/flask_covid19/blueprints/__init__.py
diff --git a/src/covid19/blueprints/app_admin/__init__.py b/src/flask_covid19/blueprints/app_admin/__init__.py
similarity index 100%
rename from src/covid19/blueprints/app_admin/__init__.py
rename to src/flask_covid19/blueprints/app_admin/__init__.py
diff --git a/src/covid19/blueprints/app_admin/app_admin_service.py b/src/flask_covid19/blueprints/app_admin/app_admin_service.py
similarity index 100%
rename from src/covid19/blueprints/app_admin/app_admin_service.py
rename to src/flask_covid19/blueprints/app_admin/app_admin_service.py
diff --git a/src/covid19/blueprints/app_admin/app_admin_views.py b/src/flask_covid19/blueprints/app_admin/app_admin_views.py
similarity index 88%
rename from src/covid19/blueprints/app_admin/app_admin_views.py
rename to src/flask_covid19/blueprints/app_admin/app_admin_views.py
index 27e1e2ac884011f57f1089aa66056d855426af54..f76d120961539a42a261255d9b7915c769f40abc 100644
--- a/src/covid19/blueprints/app_admin/app_admin_views.py
+++ b/src/flask_covid19/blueprints/app_admin/app_admin_views.py
@@ -3,12 +3,12 @@ from celery import states
 from celery.utils.log import get_task_logger
 
 from database import app
-from covid19.blueprints.app_all.all_services import who_service, owid_service
-from covid19.blueprints.app_all.all_services import rki_service, rki_vaccination_service
-from covid19.blueprints.app_all.all_services import ecdc_service, divi_service
-from covid19.blueprints.app_all.all_services import app_admin_service, app_user_service
-from covid19.blueprints.app_mq.application_workers import celery
-from covid19.blueprints.app_application.application_model_transient import ApplicationPage
+from flask_covid19 import who_service, owid_service
+from flask_covid19 import rki_service, rki_vaccination_service
+from flask_covid19 import ecdc_service, divi_service
+from flask_covid19 import app_admin_service, app_user_service
+from flask_covid19 import celery
+from flask_covid19 import ApplicationPage
 
 drop_and_create_data_again = True
 
diff --git a/src/covid19/blueprints/app_admin/templates/__init__.py b/src/flask_covid19/blueprints/app_admin/templates/__init__.py
similarity index 100%
rename from src/covid19/blueprints/app_admin/templates/__init__.py
rename to src/flask_covid19/blueprints/app_admin/templates/__init__.py
diff --git a/src/covid19/blueprints/app_admin/templates/app_admin/admin_info.html b/src/flask_covid19/blueprints/app_admin/templates/app_admin/admin_info.html
similarity index 100%
rename from src/covid19/blueprints/app_admin/templates/app_admin/admin_info.html
rename to src/flask_covid19/blueprints/app_admin/templates/app_admin/admin_info.html
diff --git a/src/covid19/blueprints/app_admin/templates/app_admin/admin_tasks.html b/src/flask_covid19/blueprints/app_admin/templates/app_admin/admin_tasks.html
similarity index 100%
rename from src/covid19/blueprints/app_admin/templates/app_admin/admin_tasks.html
rename to src/flask_covid19/blueprints/app_admin/templates/app_admin/admin_tasks.html
diff --git a/src/covid19/blueprints/app_admin/templates/app_admin/index.html b/src/flask_covid19/blueprints/app_admin/templates/app_admin/index.html
similarity index 100%
rename from src/covid19/blueprints/app_admin/templates/app_admin/index.html
rename to src/flask_covid19/blueprints/app_admin/templates/app_admin/index.html
diff --git a/src/covid19/blueprints/app_admin/templates/app_admin/navigation/app_admin_navbar_dropdown.html b/src/flask_covid19/blueprints/app_admin/templates/app_admin/navigation/app_admin_navbar_dropdown.html
similarity index 100%
rename from src/covid19/blueprints/app_admin/templates/app_admin/navigation/app_admin_navbar_dropdown.html
rename to src/flask_covid19/blueprints/app_admin/templates/app_admin/navigation/app_admin_navbar_dropdown.html
diff --git a/src/covid19/blueprints/app_admin/templates/app_admin/navigation/app_admin_navtabs.html b/src/flask_covid19/blueprints/app_admin/templates/app_admin/navigation/app_admin_navtabs.html
similarity index 100%
rename from src/covid19/blueprints/app_admin/templates/app_admin/navigation/app_admin_navtabs.html
rename to src/flask_covid19/blueprints/app_admin/templates/app_admin/navigation/app_admin_navtabs.html
diff --git a/src/covid19/blueprints/app_all/__init__.py b/src/flask_covid19/blueprints/app_all/__init__.py
similarity index 100%
rename from src/covid19/blueprints/app_all/__init__.py
rename to src/flask_covid19/blueprints/app_all/__init__.py
diff --git a/src/covid19/blueprints/app_all/all_model.py b/src/flask_covid19/blueprints/app_all/all_model.py
similarity index 100%
rename from src/covid19/blueprints/app_all/all_model.py
rename to src/flask_covid19/blueprints/app_all/all_model.py
diff --git a/src/covid19/blueprints/app_all/all_service.py b/src/flask_covid19/blueprints/app_all/all_service.py
similarity index 89%
rename from src/covid19/blueprints/app_all/all_service.py
rename to src/flask_covid19/blueprints/app_all/all_service.py
index 08cc12cd4bf0b8bc7dcf74d6cdeabc4f5eda5534..2faae9111955676e696a4ce0f2d40fe8b487bbc2 100644
--- a/src/covid19/blueprints/app_all/all_service.py
+++ b/src/flask_covid19/blueprints/app_all/all_service.py
@@ -1,11 +1,11 @@
 from database import app
 
-from covid19.blueprints.ecdc.ecdc_service import EcdcService
-from covid19.blueprints.owid.owid_service import OwidService
-from covid19.blueprints.rki_vaccination.rki_vaccination_service import RkiVaccinationService
-from covid19.blueprints.who.who_service import WhoService
-from covid19.blueprints.divi.divi_service import DiviService
-from covid19.blueprints.rki_cases.rki_service import RkiService
+from flask_covid19 import EcdcService
+from flask_covid19 import OwidService
+from flask_covid19 import RkiVaccinationService
+from flask_covid19 import WhoService
+from flask_covid19 import DiviService
+from flask_covid19 import RkiService
 
 
 class AllService:
diff --git a/src/covid19/blueprints/app_all/all_service_config.py b/src/flask_covid19/blueprints/app_all/all_service_config.py
similarity index 90%
rename from src/covid19/blueprints/app_all/all_service_config.py
rename to src/flask_covid19/blueprints/app_all/all_service_config.py
index b823003a23d1710325523356226a3da779f928d0..57671edc70511fcb82a3cdec044787f5128aaca4 100644
--- a/src/covid19/blueprints/app_all/all_service_config.py
+++ b/src/flask_covid19/blueprints/app_all/all_service_config.py
@@ -1,10 +1,10 @@
 import os
-from covid19.blueprints.ecdc.ecdc_model_import import EcdcImport
-from covid19.blueprints.who.who_model_import import WhoImport
-from covid19.blueprints.rki_vaccination.rki_vaccination_model_import import RkiVaccinationImport
-from covid19.blueprints.owid.owid_model_import import OwidImport
-from covid19.blueprints.rki_cases.rki_model_import import RkiImport
-from covid19.blueprints.divi.divi_model_import import DiviImport
+from flask_covid19 import EcdcImport
+from flask_covid19 import WhoImport
+from flask_covid19 import RkiVaccinationImport
+from flask_covid19 import OwidImport
+from flask_covid19 import RkiImport
+from flask_covid19 import DiviImport
 
 
 class ApplicationServiceConfig:
diff --git a/src/covid19/blueprints/app_all/all_service_download.py b/src/flask_covid19/blueprints/app_all/all_service_download.py
similarity index 97%
rename from src/covid19/blueprints/app_all/all_service_download.py
rename to src/flask_covid19/blueprints/app_all/all_service_download.py
index 1bf3e780a443feed07411cf270a5215c493625b9..f0974b9e8f8b9d133d661e671bbda1cc9f773bbd 100644
--- a/src/covid19/blueprints/app_all/all_service_download.py
+++ b/src/flask_covid19/blueprints/app_all/all_service_download.py
@@ -2,7 +2,7 @@ import os
 import wget
 import subprocess
 from database import app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
+from flask_covid19 import ApplicationServiceConfig
 
 
 class ApplicationServiceDownload:
diff --git a/src/flask_covid19/blueprints/app_all/all_services.py b/src/flask_covid19/blueprints/app_all/all_services.py
new file mode 100644
index 0000000000000000000000000000000000000000..0f62f722b16512c2ee4b6192c2e98de9110536f6
--- /dev/null
+++ b/src/flask_covid19/blueprints/app_all/all_services.py
@@ -0,0 +1,29 @@
+from database import db
+
+from flask_covid19 import AdminService
+from flask_covid19 import AllService
+from flask_covid19 import UserService
+from flask_covid19 import EcdcService
+from flask_covid19 import OwidService
+from flask_covid19 import RkiVaccinationService
+from flask_covid19 import WhoService
+from flask_covid19 import DiviService
+from flask_covid19 import RkiService
+
+############################################################################################
+#
+# Services
+#
+app_admin_service = AdminService(db)
+app_user_service = UserService(db)
+
+who_service = WhoService(db)
+owid_service = OwidService(db)
+ecdc_service = EcdcService(db)
+rki_vaccination_service = RkiVaccinationService(db)
+rki_service = RkiService(db)
+divi_service = DiviService(db)
+
+all_service = AllService(who_service, owid_service, ecdc_service, rki_vaccination_service, rki_service, divi_service)
+
+db.create_all()
diff --git a/src/covid19/blueprints/app_all/all_views.py b/src/flask_covid19/blueprints/app_all/all_views.py
similarity index 96%
rename from src/covid19/blueprints/app_all/all_views.py
rename to src/flask_covid19/blueprints/app_all/all_views.py
index a84c20a46de082c4a2ad26647a544412475f7a82..ee63dce44e358d058aaba72a11aeb324e2c5beb0 100644
--- a/src/covid19/blueprints/app_all/all_views.py
+++ b/src/flask_covid19/blueprints/app_all/all_views.py
@@ -3,12 +3,12 @@ from celery import states
 from celery.utils.log import get_task_logger
 
 from database import app
-from covid19.blueprints.app_all.all_services import who_service, owid_service
-from covid19.blueprints.app_all.all_services import rki_service, rki_vaccination_service
-from covid19.blueprints.app_all.all_services import ecdc_service, divi_service
-from covid19.blueprints.app_all.all_services import app_admin_service, app_user_service, all_service
-from covid19.blueprints.app_mq.application_workers import celery
-from covid19.blueprints.app_application.application_model_transient import ApplicationPage
+from flask_covid19 import who_service, owid_service
+from flask_covid19 import rki_service, rki_vaccination_service
+from flask_covid19 import ecdc_service, divi_service
+from flask_covid19 import app_admin_service, app_user_service, all_service
+from flask_covid19 import celery
+from flask_covid19 import ApplicationPage
 
 drop_and_create_data_again = True
 
diff --git a/src/covid19/blueprints/app_all/templates/__init__.py b/src/flask_covid19/blueprints/app_all/templates/__init__.py
similarity index 100%
rename from src/covid19/blueprints/app_all/templates/__init__.py
rename to src/flask_covid19/blueprints/app_all/templates/__init__.py
diff --git a/src/covid19/blueprints/app_all/templates/app_all/app_all_info.html b/src/flask_covid19/blueprints/app_all/templates/app_all/app_all_info.html
similarity index 100%
rename from src/covid19/blueprints/app_all/templates/app_all/app_all_info.html
rename to src/flask_covid19/blueprints/app_all/templates/app_all/app_all_info.html
diff --git a/src/covid19/blueprints/app_all/templates/app_all/app_all_tasks.html b/src/flask_covid19/blueprints/app_all/templates/app_all/app_all_tasks.html
similarity index 100%
rename from src/covid19/blueprints/app_all/templates/app_all/app_all_tasks.html
rename to src/flask_covid19/blueprints/app_all/templates/app_all/app_all_tasks.html
diff --git a/src/covid19/blueprints/app_all/templates/app_all/fragments/fragment_flashed_messages.html b/src/flask_covid19/blueprints/app_all/templates/app_all/fragments/fragment_flashed_messages.html
similarity index 100%
rename from src/covid19/blueprints/app_all/templates/app_all/fragments/fragment_flashed_messages.html
rename to src/flask_covid19/blueprints/app_all/templates/app_all/fragments/fragment_flashed_messages.html
diff --git a/src/covid19/blueprints/app_all/templates/app_all/fragments/fragment_pagination.html b/src/flask_covid19/blueprints/app_all/templates/app_all/fragments/fragment_pagination.html
similarity index 100%
rename from src/covid19/blueprints/app_all/templates/app_all/fragments/fragment_pagination.html
rename to src/flask_covid19/blueprints/app_all/templates/app_all/fragments/fragment_pagination.html
diff --git a/src/covid19/blueprints/app_all/templates/app_all/layout/page_layout.html b/src/flask_covid19/blueprints/app_all/templates/app_all/layout/page_layout.html
similarity index 100%
rename from src/covid19/blueprints/app_all/templates/app_all/layout/page_layout.html
rename to src/flask_covid19/blueprints/app_all/templates/app_all/layout/page_layout.html
diff --git a/src/covid19/blueprints/app_all/templates/app_all/layout/page_layout_old.html b/src/flask_covid19/blueprints/app_all/templates/app_all/layout/page_layout_old.html
similarity index 100%
rename from src/covid19/blueprints/app_all/templates/app_all/layout/page_layout_old.html
rename to src/flask_covid19/blueprints/app_all/templates/app_all/layout/page_layout_old.html
diff --git a/src/covid19/blueprints/app_all/templates/app_all/navigation/app_all_navbar_dropdown.html b/src/flask_covid19/blueprints/app_all/templates/app_all/navigation/app_all_navbar_dropdown.html
similarity index 100%
rename from src/covid19/blueprints/app_all/templates/app_all/navigation/app_all_navbar_dropdown.html
rename to src/flask_covid19/blueprints/app_all/templates/app_all/navigation/app_all_navbar_dropdown.html
diff --git a/src/covid19/blueprints/app_all/templates/app_all/navigation/app_all_navtabs.html b/src/flask_covid19/blueprints/app_all/templates/app_all/navigation/app_all_navtabs.html
similarity index 100%
rename from src/covid19/blueprints/app_all/templates/app_all/navigation/app_all_navtabs.html
rename to src/flask_covid19/blueprints/app_all/templates/app_all/navigation/app_all_navtabs.html
diff --git a/src/covid19/blueprints/app_application/__init__.py b/src/flask_covid19/blueprints/app_application/__init__.py
similarity index 100%
rename from src/covid19/blueprints/app_application/__init__.py
rename to src/flask_covid19/blueprints/app_application/__init__.py
diff --git a/src/covid19/blueprints/app_application/application_model_transient.py b/src/flask_covid19/blueprints/app_application/application_model_transient.py
similarity index 100%
rename from src/covid19/blueprints/app_application/application_model_transient.py
rename to src/flask_covid19/blueprints/app_application/application_model_transient.py
diff --git a/src/covid19/blueprints/app_application/application_service.py b/src/flask_covid19/blueprints/app_application/application_service.py
similarity index 100%
rename from src/covid19/blueprints/app_application/application_service.py
rename to src/flask_covid19/blueprints/app_application/application_service.py
diff --git a/src/covid19/blueprints/app_application/application_views.py b/src/flask_covid19/blueprints/app_application/application_views.py
similarity index 59%
rename from src/covid19/blueprints/app_application/application_views.py
rename to src/flask_covid19/blueprints/app_application/application_views.py
index 5ef5b72f5f0665ee5a2d7b46087694fea727a706..b6e7cf964ce530275e4dc2b09eba46c02d6334a3 100644
--- a/src/covid19/blueprints/app_application/application_views.py
+++ b/src/flask_covid19/blueprints/app_application/application_views.py
@@ -1,25 +1,25 @@
 from flask import render_template, redirect, url_for, Blueprint
 
 from database import app
-from covid19.blueprints.app_application.application_model_transient import ApplicationPage
+from flask_covid19 import ApplicationPage
 
 
-from covid19.blueprints.app_user.user_views import blueprint_app_user
-from covid19.blueprints.app_admin.app_admin_views import blueprint_app_admin
-from covid19.blueprints.app_all.all_views import blueprint_app_all
+from flask_covid19 import blueprint_app_user
+from flask_covid19 import blueprint_app_admin
+from flask_covid19 import blueprint_app_all
 
-from covid19.blueprints.who.who_views import app_who
-from covid19.blueprints.owid.owid_views import app_owid
-from covid19.blueprints.ecdc.ecdc_views import app_ecdc
-from covid19.blueprints.rki_vaccination.rki_vaccination_views import app_rki_vaccination
-from covid19.blueprints.rki_cases.rki_views import app_rki
-from covid19.blueprints.divi.divi_views import app_divi
+from flask_covid19 import app_who
+from flask_covid19 import app_owid
+from flask_covid19 import app_ecdc
+from flask_covid19 import app_rki_vaccination
+from flask_covid19 import app_rki
+from flask_covid19 import app_divi
 
-from covid19.blueprints.who_test.who_test_views import app_who_test
-from covid19.blueprints.owid_test.owid_test_views import app_owid_test
-from covid19.blueprints.ecdc_test.ecdc_test_views import app_ecdc_test
-from covid19.blueprints.rki_cases_test.rki_test_views import app_rki_test
-from covid19.blueprints.divi_test.divi_test_views import app_divi_test
+from flask_covid19 import app_who_test
+from flask_covid19.blueprints.owid_test import app_owid_test
+from flask_covid19 import app_ecdc_test
+from flask_covid19 import app_rki_test
+from flask_covid19 import app_divi_test
 
 blueprint_application = Blueprint('application', __name__, template_folder='templates', url_prefix='/')
 
diff --git a/src/covid19/blueprints/app_application/templates/app_application/fragments/fragment_flashed_messages.html b/src/flask_covid19/blueprints/app_application/templates/app_application/fragments/fragment_flashed_messages.html
similarity index 100%
rename from src/covid19/blueprints/app_application/templates/app_application/fragments/fragment_flashed_messages.html
rename to src/flask_covid19/blueprints/app_application/templates/app_application/fragments/fragment_flashed_messages.html
diff --git a/src/covid19/blueprints/app_application/templates/app_application/fragments/fragment_pagination.html b/src/flask_covid19/blueprints/app_application/templates/app_application/fragments/fragment_pagination.html
similarity index 100%
rename from src/covid19/blueprints/app_application/templates/app_application/fragments/fragment_pagination.html
rename to src/flask_covid19/blueprints/app_application/templates/app_application/fragments/fragment_pagination.html
diff --git a/src/covid19/blueprints/app_application/templates/app_application/navigation/navbar.html b/src/flask_covid19/blueprints/app_application/templates/app_application/navigation/navbar.html
similarity index 100%
rename from src/covid19/blueprints/app_application/templates/app_application/navigation/navbar.html
rename to src/flask_covid19/blueprints/app_application/templates/app_application/navigation/navbar.html
diff --git a/src/covid19/blueprints/app_application/templates/app_application/navigation/navtabs.html b/src/flask_covid19/blueprints/app_application/templates/app_application/navigation/navtabs.html
similarity index 100%
rename from src/covid19/blueprints/app_application/templates/app_application/navigation/navtabs.html
rename to src/flask_covid19/blueprints/app_application/templates/app_application/navigation/navtabs.html
diff --git a/src/covid19/blueprints/app_application/templates/app_application/page_home.html b/src/flask_covid19/blueprints/app_application/templates/app_application/page_home.html
similarity index 100%
rename from src/covid19/blueprints/app_application/templates/app_application/page_home.html
rename to src/flask_covid19/blueprints/app_application/templates/app_application/page_home.html
diff --git a/src/covid19/blueprints/app_mq/__init__.py b/src/flask_covid19/blueprints/app_mq/__init__.py
similarity index 100%
rename from src/covid19/blueprints/app_mq/__init__.py
rename to src/flask_covid19/blueprints/app_mq/__init__.py
diff --git a/src/covid19/blueprints/app_mq/application_workers.py b/src/flask_covid19/blueprints/app_mq/application_workers.py
similarity index 74%
rename from src/covid19/blueprints/app_mq/application_workers.py
rename to src/flask_covid19/blueprints/app_mq/application_workers.py
index 3c0be69de70756d8074ac86fe59044cf885b82d9..05ce1a7c5d4cd0caf84c3060ebabb11f40a31981 100644
--- a/src/covid19/blueprints/app_mq/application_workers.py
+++ b/src/flask_covid19/blueprints/app_mq/application_workers.py
@@ -1,8 +1,8 @@
 import sys
-from covid19 import app
+from flask_covid19 import app
 from database import create_celery, db
-from covid19.blueprints.app_all.all_services import app_user_service
-from covid19.blueprints.app_application.application_service import ApplicationService
+from flask_covid19 import app_user_service
+from flask_covid19 import ApplicationService
 
 
 def start_redis(application_service):
diff --git a/src/covid19/blueprints/app_user/__init__.py b/src/flask_covid19/blueprints/app_user/__init__.py
similarity index 100%
rename from src/covid19/blueprints/app_user/__init__.py
rename to src/flask_covid19/blueprints/app_user/__init__.py
diff --git a/src/covid19/blueprints/app_user/templates/__init__.py b/src/flask_covid19/blueprints/app_user/templates/__init__.py
similarity index 100%
rename from src/covid19/blueprints/app_user/templates/__init__.py
rename to src/flask_covid19/blueprints/app_user/templates/__init__.py
diff --git a/src/covid19/blueprints/app_user/templates/usr/login.html b/src/flask_covid19/blueprints/app_user/templates/usr/login.html
similarity index 100%
rename from src/covid19/blueprints/app_user/templates/usr/login.html
rename to src/flask_covid19/blueprints/app_user/templates/usr/login.html
diff --git a/src/covid19/blueprints/app_user/templates/usr/navigation/usr_navbar_dropdown.html b/src/flask_covid19/blueprints/app_user/templates/usr/navigation/usr_navbar_dropdown.html
similarity index 100%
rename from src/covid19/blueprints/app_user/templates/usr/navigation/usr_navbar_dropdown.html
rename to src/flask_covid19/blueprints/app_user/templates/usr/navigation/usr_navbar_dropdown.html
diff --git a/src/covid19/blueprints/app_user/templates/usr/navigation/usr_navtabs.html b/src/flask_covid19/blueprints/app_user/templates/usr/navigation/usr_navtabs.html
similarity index 100%
rename from src/covid19/blueprints/app_user/templates/usr/navigation/usr_navtabs.html
rename to src/flask_covid19/blueprints/app_user/templates/usr/navigation/usr_navtabs.html
diff --git a/src/covid19/blueprints/app_user/templates/usr/profile.html b/src/flask_covid19/blueprints/app_user/templates/usr/profile.html
similarity index 100%
rename from src/covid19/blueprints/app_user/templates/usr/profile.html
rename to src/flask_covid19/blueprints/app_user/templates/usr/profile.html
diff --git a/src/covid19/blueprints/app_user/templates/usr/user_info.html b/src/flask_covid19/blueprints/app_user/templates/usr/user_info.html
similarity index 100%
rename from src/covid19/blueprints/app_user/templates/usr/user_info.html
rename to src/flask_covid19/blueprints/app_user/templates/usr/user_info.html
diff --git a/src/covid19/blueprints/app_user/templates/usr/user_tasks.html b/src/flask_covid19/blueprints/app_user/templates/usr/user_tasks.html
similarity index 100%
rename from src/covid19/blueprints/app_user/templates/usr/user_tasks.html
rename to src/flask_covid19/blueprints/app_user/templates/usr/user_tasks.html
diff --git a/src/covid19/blueprints/app_user/templates/usr/usr_table.html b/src/flask_covid19/blueprints/app_user/templates/usr/usr_table.html
similarity index 100%
rename from src/covid19/blueprints/app_user/templates/usr/usr_table.html
rename to src/flask_covid19/blueprints/app_user/templates/usr/usr_table.html
diff --git a/src/covid19/blueprints/app_user/user_model.py b/src/flask_covid19/blueprints/app_user/user_model.py
similarity index 100%
rename from src/covid19/blueprints/app_user/user_model.py
rename to src/flask_covid19/blueprints/app_user/user_model.py
diff --git a/src/covid19/blueprints/app_user/user_service.py b/src/flask_covid19/blueprints/app_user/user_service.py
similarity index 94%
rename from src/covid19/blueprints/app_user/user_service.py
rename to src/flask_covid19/blueprints/app_user/user_service.py
index c4a503f2fc711a8b495cc0bd361e0f94794b7d95..e592ca3f3d3722e61dc82d981d69dee1b85a0a52 100644
--- a/src/covid19/blueprints/app_user/user_service.py
+++ b/src/flask_covid19/blueprints/app_user/user_service.py
@@ -1,5 +1,5 @@
 from database import app
-from covid19.blueprints.app_user.user_model import User, LoginForm
+from flask_covid19 import User, LoginForm
 
 
 class UserService:
diff --git a/src/covid19/blueprints/app_user/user_views.py b/src/flask_covid19/blueprints/app_user/user_views.py
similarity index 95%
rename from src/covid19/blueprints/app_user/user_views.py
rename to src/flask_covid19/blueprints/app_user/user_views.py
index 4a9a5587ea423a152a957f9202c88c63c50b61a2..242e228f73e3c3d779c9aafe85f82c231ccabfd2 100644
--- a/src/covid19/blueprints/app_user/user_views.py
+++ b/src/flask_covid19/blueprints/app_user/user_views.py
@@ -8,8 +8,8 @@ import flask
 
 from database import admin, db, login_manager
 
-from covid19.blueprints.app_application.application_model_transient import ApplicationPage
-from covid19.blueprints.app_user.user_model import User, LoginForm
+from flask_covid19 import ApplicationPage
+from flask_covid19 import User, LoginForm
 
 
 blueprint_app_user = Blueprint('usr', __name__, template_folder='templates', url_prefix='/app/usr')
diff --git a/src/covid19/blueprints/divi/__init__.py b/src/flask_covid19/blueprints/divi/__init__.py
similarity index 100%
rename from src/covid19/blueprints/divi/__init__.py
rename to src/flask_covid19/blueprints/divi/__init__.py
diff --git a/src/covid19/blueprints/divi/divi_model.py b/src/flask_covid19/blueprints/divi/divi_model.py
similarity index 99%
rename from src/covid19/blueprints/divi/divi_model.py
rename to src/flask_covid19/blueprints/divi/divi_model.py
index f1b6eadfeefc404d263ef8ab858c14cb3f0cd88a..96fd0f45010489e075eefb23f22bfa0ff514343a 100644
--- a/src/covid19/blueprints/divi/divi_model.py
+++ b/src/flask_covid19/blueprints/divi/divi_model.py
@@ -2,7 +2,7 @@ from sqlalchemy import and_
 from datetime import date
 from sqlalchemy.orm import joinedload, subqueryload
 from database import db, ITEMS_PER_PAGE
-from covid19.blueprints.app_all.all_model import ApplicationDateReported, ApplicationRegion
+from flask_covid19 import ApplicationDateReported, ApplicationRegion
 
 
 class DiviDateReported(ApplicationDateReported):
diff --git a/src/covid19/blueprints/divi/divi_model_import.py b/src/flask_covid19/blueprints/divi/divi_model_import.py
similarity index 100%
rename from src/covid19/blueprints/divi/divi_model_import.py
rename to src/flask_covid19/blueprints/divi/divi_model_import.py
diff --git a/src/covid19/blueprints/divi/divi_service.py b/src/flask_covid19/blueprints/divi/divi_service.py
similarity index 84%
rename from src/covid19/blueprints/divi/divi_service.py
rename to src/flask_covid19/blueprints/divi/divi_service.py
index bbb8a26346fb293dbcda381bf1cf0245e99645c6..8d74caddeb55eda950ea208cf8901fcceb6ca30b 100644
--- a/src/covid19/blueprints/divi/divi_service.py
+++ b/src/flask_covid19/blueprints/divi/divi_service.py
@@ -1,9 +1,9 @@
 from database import app
 
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.app_all.all_service_download import ApplicationServiceDownload
-from covid19.blueprints.divi.divi_service_import import DiviServiceImport
-from covid19.blueprints.divi.divi_service_update import DiviServiceUpdate, DiviServiceUpdateFull
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import ApplicationServiceDownload
+from flask_covid19 import DiviServiceImport
+from flask_covid19 import DiviServiceUpdate, DiviServiceUpdateFull
 
 
 class DiviService:
diff --git a/src/covid19/blueprints/divi/divi_service_import.py b/src/flask_covid19/blueprints/divi/divi_service_import.py
similarity index 95%
rename from src/covid19/blueprints/divi/divi_service_import.py
rename to src/flask_covid19/blueprints/divi/divi_service_import.py
index af2bc43486ab578afa76a2cd38f58acf24532ebf..d90dbe02aef13f7107a033261eea3055ddd7d5b1 100644
--- a/src/covid19/blueprints/divi/divi_service_import.py
+++ b/src/flask_covid19/blueprints/divi/divi_service_import.py
@@ -3,8 +3,8 @@ import csv
 import psycopg2
 
 from database import db, app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.divi.divi_model_import import DiviImport
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import DiviImport
 
 
 class DiviServiceImport:
diff --git a/src/covid19/blueprints/divi/divi_service_update.py b/src/flask_covid19/blueprints/divi/divi_service_update.py
similarity index 98%
rename from src/covid19/blueprints/divi/divi_service_update.py
rename to src/flask_covid19/blueprints/divi/divi_service_update.py
index 5aaabe91501346bc4b3f71c65cd910862762f5af..b0f1ab609cc06dda4693774631d1118436de3d3e 100644
--- a/src/covid19/blueprints/divi/divi_service_update.py
+++ b/src/flask_covid19/blueprints/divi/divi_service_update.py
@@ -1,8 +1,8 @@
 from database import db, app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
+from flask_covid19 import ApplicationServiceConfig
 
-from covid19.blueprints.divi.divi_model import DiviRegion, DiviDateReported, DiviCountry, DiviData
-from covid19.blueprints.divi.divi_model_import import DiviImport
+from flask_covid19 import DiviRegion, DiviDateReported, DiviCountry, DiviData
+from flask_covid19 import DiviImport
 
 
 class DiviServiceUpdateBase:
diff --git a/src/covid19/blueprints/divi/divi_views.py b/src/flask_covid19/blueprints/divi/divi_views.py
similarity index 98%
rename from src/covid19/blueprints/divi/divi_views.py
rename to src/flask_covid19/blueprints/divi/divi_views.py
index e32c895f04b0d9a52c586f5e87a8069c85c82f8f..95779ed53319652e7879c0a465b27cebbc3b14db 100644
--- a/src/covid19/blueprints/divi/divi_views.py
+++ b/src/flask_covid19/blueprints/divi/divi_views.py
@@ -6,12 +6,12 @@ from flask_admin.contrib.sqla import ModelView
 from flask_login import login_required
 
 from database import app, admin, db
-from covid19.blueprints.app_all.all_services import divi_service
-from covid19.blueprints.app_mq.application_workers import celery
-from covid19.blueprints.app_application.application_model_transient import ApplicationPage
+from flask_covid19 import divi_service
+from flask_covid19 import celery
+from flask_covid19 import ApplicationPage
 
-from covid19.blueprints.divi.divi_model import DiviRegion, DiviDateReported, DiviCountry, DiviData
-from covid19.blueprints.divi.divi_model_import import DiviImport
+from flask_covid19 import DiviRegion, DiviDateReported, DiviCountry, DiviData
+from flask_covid19 import DiviImport
 
 
 app_divi = Blueprint('divi', __name__, template_folder='templates', url_prefix='/divi')
diff --git a/src/covid19/blueprints/divi/templates/__init__.py b/src/flask_covid19/blueprints/divi/templates/__init__.py
similarity index 100%
rename from src/covid19/blueprints/divi/templates/__init__.py
rename to src/flask_covid19/blueprints/divi/templates/__init__.py
diff --git a/src/covid19/blueprints/divi/templates/divi/country/divi_country_all.html b/src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_all.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/country/divi_country_all.html
rename to src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_all.html
diff --git a/src/covid19/blueprints/divi/templates/divi/country/divi_country_all_pagination.html b/src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_all_pagination.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/country/divi_country_all_pagination.html
rename to src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_all_pagination.html
diff --git a/src/covid19/blueprints/divi/templates/divi/country/divi_country_all_table.html b/src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_all_table.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/country/divi_country_all_table.html
rename to src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_all_table.html
diff --git a/src/covid19/blueprints/divi/templates/divi/country/divi_country_germany.html b/src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_germany.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/country/divi_country_germany.html
rename to src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_germany.html
diff --git a/src/covid19/blueprints/divi/templates/divi/country/divi_country_germany_pagination.html b/src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_germany_pagination.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/country/divi_country_germany_pagination.html
rename to src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_germany_pagination.html
diff --git a/src/covid19/blueprints/divi/templates/divi/country/divi_country_one.html b/src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/country/divi_country_one.html
rename to src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one.html
diff --git a/src/covid19/blueprints/divi/templates/divi/country/divi_country_one_cases_cumulative.html b/src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_cases_cumulative.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/country/divi_country_one_cases_cumulative.html
rename to src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_cases_cumulative.html
diff --git a/src/covid19/blueprints/divi/templates/divi/country/divi_country_one_cases_cumulative_pagination.html b/src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_cases_cumulative_pagination.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/country/divi_country_one_cases_cumulative_pagination.html
rename to src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_cases_cumulative_pagination.html
diff --git a/src/covid19/blueprints/divi/templates/divi/country/divi_country_one_cases_new.html b/src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_cases_new.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/country/divi_country_one_cases_new.html
rename to src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_cases_new.html
diff --git a/src/covid19/blueprints/divi/templates/divi/country/divi_country_one_cases_new_pagination.html b/src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_cases_new_pagination.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/country/divi_country_one_cases_new_pagination.html
rename to src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_cases_new_pagination.html
diff --git a/src/covid19/blueprints/divi/templates/divi/country/divi_country_one_deaths_cumulative.html b/src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_deaths_cumulative.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/country/divi_country_one_deaths_cumulative.html
rename to src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_deaths_cumulative.html
diff --git a/src/covid19/blueprints/divi/templates/divi/country/divi_country_one_deaths_cumulative_pagination.html b/src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_deaths_cumulative_pagination.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/country/divi_country_one_deaths_cumulative_pagination.html
rename to src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_deaths_cumulative_pagination.html
diff --git a/src/covid19/blueprints/divi/templates/divi/country/divi_country_one_deaths_new.html b/src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_deaths_new.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/country/divi_country_one_deaths_new.html
rename to src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_deaths_new.html
diff --git a/src/covid19/blueprints/divi/templates/divi/country/divi_country_one_deaths_new_pagination.html b/src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_deaths_new_pagination.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/country/divi_country_one_deaths_new_pagination.html
rename to src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_deaths_new_pagination.html
diff --git a/src/covid19/blueprints/divi/templates/divi/country/divi_country_one_pagination.html b/src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_pagination.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/country/divi_country_one_pagination.html
rename to src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_pagination.html
diff --git a/src/covid19/blueprints/divi/templates/divi/country/divi_country_one_table.html b/src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_table.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/country/divi_country_one_table.html
rename to src/flask_covid19/blueprints/divi/templates/divi/country/divi_country_one_table.html
diff --git a/src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_all.html b/src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_all.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_all.html
rename to src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_all.html
diff --git a/src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_all_pagination.html b/src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_all_pagination.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_all_pagination.html
rename to src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_all_pagination.html
diff --git a/src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_all_table.html b/src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_all_table.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_all_table.html
rename to src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_all_table.html
diff --git a/src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one.html b/src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one.html
rename to src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one.html
diff --git a/src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_cases_cumulative.html b/src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_cases_cumulative.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_cases_cumulative.html
rename to src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_cases_cumulative.html
diff --git a/src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_cases_cumulative_pagination.html b/src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_cases_cumulative_pagination.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_cases_cumulative_pagination.html
rename to src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_cases_cumulative_pagination.html
diff --git a/src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_cases_new.html b/src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_cases_new.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_cases_new.html
rename to src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_cases_new.html
diff --git a/src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_cases_new_pagination.html b/src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_cases_new_pagination.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_cases_new_pagination.html
rename to src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_cases_new_pagination.html
diff --git a/src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_deaths_cumulative.html b/src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_deaths_cumulative.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_deaths_cumulative.html
rename to src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_deaths_cumulative.html
diff --git a/src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_deaths_cumulative_pagination.html b/src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_deaths_cumulative_pagination.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_deaths_cumulative_pagination.html
rename to src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_deaths_cumulative_pagination.html
diff --git a/src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_deaths_new.html b/src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_deaths_new.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_deaths_new.html
rename to src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_deaths_new.html
diff --git a/src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_pagination.html b/src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_pagination.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_pagination.html
rename to src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_pagination.html
diff --git a/src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_table.html b/src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_table.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_table.html
rename to src/flask_covid19/blueprints/divi/templates/divi/date_reported/divi_date_reported_one_table.html
diff --git a/src/covid19/blueprints/divi/templates/divi/divi_imported.html b/src/flask_covid19/blueprints/divi/templates/divi/divi_imported.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/divi_imported.html
rename to src/flask_covid19/blueprints/divi/templates/divi/divi_imported.html
diff --git a/src/covid19/blueprints/divi/templates/divi/divi_info.html b/src/flask_covid19/blueprints/divi/templates/divi/divi_info.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/divi_info.html
rename to src/flask_covid19/blueprints/divi/templates/divi/divi_info.html
diff --git a/src/covid19/blueprints/divi/templates/divi/divi_tasks.html b/src/flask_covid19/blueprints/divi/templates/divi/divi_tasks.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/divi_tasks.html
rename to src/flask_covid19/blueprints/divi/templates/divi/divi_tasks.html
diff --git a/src/covid19/blueprints/divi/templates/divi/fragments/fragment_divi_imported_pagination.html b/src/flask_covid19/blueprints/divi/templates/divi/fragments/fragment_divi_imported_pagination.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/fragments/fragment_divi_imported_pagination.html
rename to src/flask_covid19/blueprints/divi/templates/divi/fragments/fragment_divi_imported_pagination.html
diff --git a/src/covid19/blueprints/divi/templates/divi/fragments/fragment_divi_imported_table.html b/src/flask_covid19/blueprints/divi/templates/divi/fragments/fragment_divi_imported_table.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/fragments/fragment_divi_imported_table.html
rename to src/flask_covid19/blueprints/divi/templates/divi/fragments/fragment_divi_imported_table.html
diff --git a/src/covid19/blueprints/divi/templates/divi/fragments/fragment_divi_table_global_data.html b/src/flask_covid19/blueprints/divi/templates/divi/fragments/fragment_divi_table_global_data.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/fragments/fragment_divi_table_global_data.html
rename to src/flask_covid19/blueprints/divi/templates/divi/fragments/fragment_divi_table_global_data.html
diff --git a/src/covid19/blueprints/divi/templates/divi/navigation/divi_navbar_dropdown.html b/src/flask_covid19/blueprints/divi/templates/divi/navigation/divi_navbar_dropdown.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/navigation/divi_navbar_dropdown.html
rename to src/flask_covid19/blueprints/divi/templates/divi/navigation/divi_navbar_dropdown.html
diff --git a/src/covid19/blueprints/divi/templates/divi/navigation/divi_navtabs.html b/src/flask_covid19/blueprints/divi/templates/divi/navigation/divi_navtabs.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/navigation/divi_navtabs.html
rename to src/flask_covid19/blueprints/divi/templates/divi/navigation/divi_navtabs.html
diff --git a/src/covid19/blueprints/divi/templates/divi/region/divi_region_all.html b/src/flask_covid19/blueprints/divi/templates/divi/region/divi_region_all.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/region/divi_region_all.html
rename to src/flask_covid19/blueprints/divi/templates/divi/region/divi_region_all.html
diff --git a/src/covid19/blueprints/divi/templates/divi/region/divi_region_all_pagination.html b/src/flask_covid19/blueprints/divi/templates/divi/region/divi_region_all_pagination.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/region/divi_region_all_pagination.html
rename to src/flask_covid19/blueprints/divi/templates/divi/region/divi_region_all_pagination.html
diff --git a/src/covid19/blueprints/divi/templates/divi/region/divi_region_all_table.html b/src/flask_covid19/blueprints/divi/templates/divi/region/divi_region_all_table.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/region/divi_region_all_table.html
rename to src/flask_covid19/blueprints/divi/templates/divi/region/divi_region_all_table.html
diff --git a/src/covid19/blueprints/divi/templates/divi/region/divi_region_one.html b/src/flask_covid19/blueprints/divi/templates/divi/region/divi_region_one.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/region/divi_region_one.html
rename to src/flask_covid19/blueprints/divi/templates/divi/region/divi_region_one.html
diff --git a/src/covid19/blueprints/divi/templates/divi/region/divi_region_one_pagination.html b/src/flask_covid19/blueprints/divi/templates/divi/region/divi_region_one_pagination.html
similarity index 100%
rename from src/covid19/blueprints/divi/templates/divi/region/divi_region_one_pagination.html
rename to src/flask_covid19/blueprints/divi/templates/divi/region/divi_region_one_pagination.html
diff --git a/src/covid19/blueprints/divi_test/__init__.py b/src/flask_covid19/blueprints/divi_test/__init__.py
similarity index 100%
rename from src/covid19/blueprints/divi_test/__init__.py
rename to src/flask_covid19/blueprints/divi_test/__init__.py
diff --git a/src/covid19/blueprints/divi_test/divi_test_service.py b/src/flask_covid19/blueprints/divi_test/divi_test_service.py
similarity index 94%
rename from src/covid19/blueprints/divi_test/divi_test_service.py
rename to src/flask_covid19/blueprints/divi_test/divi_test_service.py
index 2021dc8b563676a84cd261f0027c5f949d761f7c..06a61752a27551f84efe147a49f8896c988ca6f0 100644
--- a/src/covid19/blueprints/divi_test/divi_test_service.py
+++ b/src/flask_covid19/blueprints/divi_test/divi_test_service.py
@@ -1,6 +1,6 @@
 from database import app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.divi.divi_model import DiviDateReported, DiviData
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import DiviDateReported, DiviData
 
 
 class DiviTestService:
diff --git a/src/covid19/blueprints/divi_test/divi_test_views.py b/src/flask_covid19/blueprints/divi_test/divi_test_views.py
similarity index 94%
rename from src/covid19/blueprints/divi_test/divi_test_views.py
rename to src/flask_covid19/blueprints/divi_test/divi_test_views.py
index 37e4dfe6cc8060e077549263a77ccf7b99ed880a..5bc85130a30ad3c305fc8bec11700c7bf0f2e4aa 100644
--- a/src/covid19/blueprints/divi_test/divi_test_views.py
+++ b/src/flask_covid19/blueprints/divi_test/divi_test_views.py
@@ -4,14 +4,14 @@ from celery.utils.log import get_task_logger
 from flask_login import login_required
 
 from database import app, db
-from covid19.blueprints.app_all.all_services import divi_service
-from covid19.blueprints.app_mq.application_workers import celery
-from covid19.blueprints.app_application.application_model_transient import ApplicationPage
+from flask_covid19 import divi_service
+from flask_covid19 import celery
+from flask_covid19 import ApplicationPage
 
-from covid19.blueprints.divi.divi_model_import import DiviImport
-from covid19.blueprints.divi.divi_model import DiviData
+from flask_covid19 import DiviImport
+from flask_covid19 import DiviData
 
-from covid19.blueprints.divi_test.divi_test_service import DiviTestService
+from flask_covid19 import DiviTestService
 
 divi_test_service = DiviTestService(db, divi_service)
 
diff --git a/src/covid19/blueprints/divi_test/templates/__init__.py b/src/flask_covid19/blueprints/divi_test/templates/__init__.py
similarity index 100%
rename from src/covid19/blueprints/divi_test/templates/__init__.py
rename to src/flask_covid19/blueprints/divi_test/templates/__init__.py
diff --git a/src/covid19/blueprints/divi_test/templates/divi_test/divi_tests.html b/src/flask_covid19/blueprints/divi_test/templates/divi_test/divi_tests.html
similarity index 100%
rename from src/covid19/blueprints/divi_test/templates/divi_test/divi_tests.html
rename to src/flask_covid19/blueprints/divi_test/templates/divi_test/divi_tests.html
diff --git a/src/covid19/blueprints/ecdc/__init__.py b/src/flask_covid19/blueprints/ecdc/__init__.py
similarity index 100%
rename from src/covid19/blueprints/ecdc/__init__.py
rename to src/flask_covid19/blueprints/ecdc/__init__.py
diff --git a/src/covid19/blueprints/ecdc/ecdc_model.py b/src/flask_covid19/blueprints/ecdc/ecdc_model.py
similarity index 99%
rename from src/covid19/blueprints/ecdc/ecdc_model.py
rename to src/flask_covid19/blueprints/ecdc/ecdc_model.py
index d7127da319d1f6db0b16e6520c4b16e91a586f86..adca19a5b357c57665b40583989ed99d090f837e 100644
--- a/src/covid19/blueprints/ecdc/ecdc_model.py
+++ b/src/flask_covid19/blueprints/ecdc/ecdc_model.py
@@ -1,6 +1,6 @@
 from sqlalchemy import and_
 from database import db, ITEMS_PER_PAGE
-from covid19.blueprints.app_all.all_model import ApplicationDateReported, ApplicationRegion
+from flask_covid19 import ApplicationDateReported, ApplicationRegion
 
 
 class EcdcDateReported(ApplicationDateReported):
diff --git a/src/covid19/blueprints/ecdc/ecdc_model_import.py b/src/flask_covid19/blueprints/ecdc/ecdc_model_import.py
similarity index 100%
rename from src/covid19/blueprints/ecdc/ecdc_model_import.py
rename to src/flask_covid19/blueprints/ecdc/ecdc_model_import.py
diff --git a/src/covid19/blueprints/ecdc/ecdc_service.py b/src/flask_covid19/blueprints/ecdc/ecdc_service.py
similarity index 84%
rename from src/covid19/blueprints/ecdc/ecdc_service.py
rename to src/flask_covid19/blueprints/ecdc/ecdc_service.py
index 2b8a836ac17b9bc06b27319126b3bf7514fa746e..bcedfa24e4c7431496fc064b73c146b4dace1c50 100644
--- a/src/covid19/blueprints/ecdc/ecdc_service.py
+++ b/src/flask_covid19/blueprints/ecdc/ecdc_service.py
@@ -1,8 +1,8 @@
 from database import app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.app_all.all_service_download import ApplicationServiceDownload
-from covid19.blueprints.ecdc.ecdc_service_import import EcdcServiceImport
-from covid19.blueprints.ecdc.ecdc_service_update import EcdcServiceUpdate, EcdcServiceUpdateFull
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import ApplicationServiceDownload
+from flask_covid19 import EcdcServiceImport
+from flask_covid19 import EcdcServiceUpdate, EcdcServiceUpdateFull
 
 
 class EcdcService:
diff --git a/src/covid19/blueprints/ecdc/ecdc_service_import.py b/src/flask_covid19/blueprints/ecdc/ecdc_service_import.py
similarity index 94%
rename from src/covid19/blueprints/ecdc/ecdc_service_import.py
rename to src/flask_covid19/blueprints/ecdc/ecdc_service_import.py
index 7e3928e93c0bb57e37f0921c63c1c73a53ecddcf..734674ef991a7febff01a44e370320de61b99b02 100644
--- a/src/covid19/blueprints/ecdc/ecdc_service_import.py
+++ b/src/flask_covid19/blueprints/ecdc/ecdc_service_import.py
@@ -2,9 +2,9 @@ import csv
 import psycopg2
 
 from database import db, app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.ecdc.ecdc_model import EcdcDateReported
-from covid19.blueprints.ecdc.ecdc_model_import import EcdcImport
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import EcdcDateReported
+from flask_covid19 import EcdcImport
 
 
 class EcdcServiceImport:
diff --git a/src/covid19/blueprints/ecdc/ecdc_service_update.py b/src/flask_covid19/blueprints/ecdc/ecdc_service_update.py
similarity index 98%
rename from src/covid19/blueprints/ecdc/ecdc_service_update.py
rename to src/flask_covid19/blueprints/ecdc/ecdc_service_update.py
index 102bba879a74f6a9f53050807209a6bc2f20e13b..aa04092703541a96a7d42076b3360c7c24b3b9df 100644
--- a/src/covid19/blueprints/ecdc/ecdc_service_update.py
+++ b/src/flask_covid19/blueprints/ecdc/ecdc_service_update.py
@@ -1,7 +1,7 @@
 from database import db, app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.ecdc.ecdc_model_import import EcdcImport
-from covid19.blueprints.ecdc.ecdc_model import EcdcDateReported, EcdcContinent, EcdcCountry, EcdcData
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import EcdcImport
+from flask_covid19 import EcdcDateReported, EcdcContinent, EcdcCountry, EcdcData
 
 
 class EcdcServiceUpdateBase:
diff --git a/src/covid19/blueprints/ecdc/ecdc_views.py b/src/flask_covid19/blueprints/ecdc/ecdc_views.py
similarity index 95%
rename from src/covid19/blueprints/ecdc/ecdc_views.py
rename to src/flask_covid19/blueprints/ecdc/ecdc_views.py
index 9c90dc76e324c20274cdbc4ce092ff1fe89c0bae..5d737100bb9c8f2d842dd1970b1a9270d25d6046 100644
--- a/src/covid19/blueprints/ecdc/ecdc_views.py
+++ b/src/flask_covid19/blueprints/ecdc/ecdc_views.py
@@ -4,15 +4,13 @@ from celery.utils.log import get_task_logger
 from flask_admin.contrib.sqla import ModelView
 
 from database import admin, db
-from covid19.blueprints.app_all.all_services import who_service, owid_service
-from covid19.blueprints.app_all.all_services import rki_service, rki_vaccination_service
-from covid19.blueprints.app_all.all_services import ecdc_service, divi_service
-from covid19.blueprints.app_all.all_services import app_admin_service, app_user_service
-from covid19.blueprints.app_mq.application_workers import celery
-
-from covid19.blueprints.ecdc.ecdc_model_import import EcdcImport
-from covid19.blueprints.ecdc.ecdc_model import EcdcDateReported, EcdcContinent, EcdcCountry, EcdcData
-from covid19.blueprints.app_application.application_model_transient import ApplicationPage
+from flask_covid19 import who_service, owid_service
+from flask_covid19 import ecdc_service
+from flask_covid19 import celery
+
+from flask_covid19 import EcdcImport
+from flask_covid19 import EcdcDateReported, EcdcContinent, EcdcCountry, EcdcData
+from flask_covid19 import ApplicationPage
 
 
 app_ecdc = Blueprint('ecdc', __name__, template_folder='templates', url_prefix='/ecdc')
diff --git a/src/covid19/blueprints/ecdc/templates/__init__.py b/src/flask_covid19/blueprints/ecdc/templates/__init__.py
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/__init__.py
rename to src/flask_covid19/blueprints/ecdc/templates/__init__.py
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_all.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_all.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_all.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_all.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_all_pagination.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_all_pagination.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_all_pagination.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_all_pagination.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_all_table.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_all_table.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_all_table.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_all_table.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_one.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_one.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_one.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_one.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_one_pagination.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_one_pagination.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_one_pagination.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/continent/ecdc_continent_one_pagination.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_all.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_all.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_all.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_all.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_all_pagination.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_all_pagination.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_all_pagination.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_all_pagination.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_all_table.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_all_table.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_all_table.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_all_table.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_germany.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_germany.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_germany.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_germany.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_germany_pagination.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_germany_pagination.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_germany_pagination.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_germany_pagination.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_one.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_one.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_one.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_one.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_one_pagination.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_one_pagination.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_one_pagination.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/country/ecdc_country_one_pagination.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_all.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_all.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_all.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_all.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_all_pagination.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_all_pagination.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_all_pagination.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_all_pagination.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_all_table.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_all_table.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_all_table.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_all_table.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_cases_weekly.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_cases_weekly.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_cases_weekly.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_cases_weekly.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_cases_weekly_pagination.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_cases_weekly_pagination.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_cases_weekly_pagination.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_cases_weekly_pagination.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_deaths_weekly.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_deaths_weekly.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_deaths_weekly.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_deaths_weekly.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_deaths_weekly_pagination.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_deaths_weekly_pagination.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_deaths_weekly_pagination.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_deaths_weekly_pagination.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_notification_rate.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_notification_rate.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_notification_rate.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_notification_rate.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_notification_rate_pagination.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_notification_rate_pagination.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_notification_rate_pagination.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_notification_rate_pagination.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_pagination.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_pagination.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_pagination.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/date_reported/ecdc_date_reported_one_pagination.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/ecdc_data/ecdc_data.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/ecdc_data/ecdc_data.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/ecdc_data/ecdc_data.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/ecdc_data/ecdc_data.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/ecdc_data/ecdc_data_pagination.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/ecdc_data/ecdc_data_pagination.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/ecdc_data/ecdc_data_pagination.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/ecdc_data/ecdc_data_pagination.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/ecdc_data/ecdc_data_table.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/ecdc_data/ecdc_data_table.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/ecdc_data/ecdc_data_table.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/ecdc_data/ecdc_data_table.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/ecdc_info.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/ecdc_info.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/ecdc_info.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/ecdc_info.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/ecdc_tasks.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/ecdc_tasks.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/ecdc_tasks.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/ecdc_tasks.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/imported/ecdc_imported.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/imported/ecdc_imported.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/imported/ecdc_imported.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/imported/ecdc_imported.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/imported/ecdc_imported_pagination.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/imported/ecdc_imported_pagination.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/imported/ecdc_imported_pagination.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/imported/ecdc_imported_pagination.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/imported/ecdc_imported_table.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/imported/ecdc_imported_table.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/imported/ecdc_imported_table.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/imported/ecdc_imported_table.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/navigation/ecdc_navbar_dropdown.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/navigation/ecdc_navbar_dropdown.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/navigation/ecdc_navbar_dropdown.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/navigation/ecdc_navbar_dropdown.html
diff --git a/src/covid19/blueprints/ecdc/templates/ecdc/navigation/ecdc_navtabs.html b/src/flask_covid19/blueprints/ecdc/templates/ecdc/navigation/ecdc_navtabs.html
similarity index 100%
rename from src/covid19/blueprints/ecdc/templates/ecdc/navigation/ecdc_navtabs.html
rename to src/flask_covid19/blueprints/ecdc/templates/ecdc/navigation/ecdc_navtabs.html
diff --git a/src/covid19/blueprints/ecdc_test/__init__.py b/src/flask_covid19/blueprints/ecdc_test/__init__.py
similarity index 100%
rename from src/covid19/blueprints/ecdc_test/__init__.py
rename to src/flask_covid19/blueprints/ecdc_test/__init__.py
diff --git a/src/covid19/blueprints/ecdc_test/ecdc_test_service.py b/src/flask_covid19/blueprints/ecdc_test/ecdc_test_service.py
similarity index 94%
rename from src/covid19/blueprints/ecdc_test/ecdc_test_service.py
rename to src/flask_covid19/blueprints/ecdc_test/ecdc_test_service.py
index 3fb08270f77f854d2f1ba397535cdad821aee7da..a3522388e33ac13a0eda14854aa61a68d63bcec5 100644
--- a/src/covid19/blueprints/ecdc_test/ecdc_test_service.py
+++ b/src/flask_covid19/blueprints/ecdc_test/ecdc_test_service.py
@@ -1,6 +1,6 @@
 from database import app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.ecdc.ecdc_model import EcdcDateReported, EcdcData
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import EcdcDateReported, EcdcData
 
 
 class EcdcTestService:
diff --git a/src/covid19/blueprints/ecdc_test/ecdc_test_views.py b/src/flask_covid19/blueprints/ecdc_test/ecdc_test_views.py
similarity index 92%
rename from src/covid19/blueprints/ecdc_test/ecdc_test_views.py
rename to src/flask_covid19/blueprints/ecdc_test/ecdc_test_views.py
index dd6bac1cba18ebf2696441347d5cba61c04c8e45..93a74f17b89e900c57f73de1c2e2b544666e8bbc 100644
--- a/src/covid19/blueprints/ecdc_test/ecdc_test_views.py
+++ b/src/flask_covid19/blueprints/ecdc_test/ecdc_test_views.py
@@ -4,15 +4,15 @@ from celery.utils.log import get_task_logger
 from flask_login import login_required
 
 from database import app, db
-from covid19.blueprints.app_all.all_services import who_service, owid_service
-from covid19.blueprints.app_all.all_services import rki_service, rki_vaccination_service
-from covid19.blueprints.app_all.all_services import ecdc_service, divi_service
-from covid19.blueprints.app_all.all_services import app_admin_service, app_user_service
-from covid19.blueprints.app_mq.application_workers import celery
-from covid19.blueprints.app_application.application_model_transient import ApplicationPage
-
-from covid19.blueprints.ecdc.ecdc_model_import import EcdcImport
-from covid19.blueprints.ecdc_test.ecdc_test_service import EcdcTestService
+from flask_covid19 import who_service, owid_service
+from flask_covid19 import rki_service, rki_vaccination_service
+from flask_covid19 import ecdc_service, divi_service
+from flask_covid19 import app_admin_service, app_user_service
+from flask_covid19 import celery
+from flask_covid19 import ApplicationPage
+
+from flask_covid19 import EcdcImport
+from flask_covid19 import EcdcTestService
 
 ecdc_test_service = EcdcTestService(db, ecdc_service)
 
diff --git a/src/covid19/blueprints/ecdc_test/templates/__init__.py b/src/flask_covid19/blueprints/ecdc_test/templates/__init__.py
similarity index 100%
rename from src/covid19/blueprints/ecdc_test/templates/__init__.py
rename to src/flask_covid19/blueprints/ecdc_test/templates/__init__.py
diff --git a/src/covid19/blueprints/ecdc_test/templates/ecdc_test/ecdc_tests.html b/src/flask_covid19/blueprints/ecdc_test/templates/ecdc_test/ecdc_tests.html
similarity index 100%
rename from src/covid19/blueprints/ecdc_test/templates/ecdc_test/ecdc_tests.html
rename to src/flask_covid19/blueprints/ecdc_test/templates/ecdc_test/ecdc_tests.html
diff --git a/src/covid19/blueprints/intensivregister/__init__.py b/src/flask_covid19/blueprints/intensivregister/__init__.py
similarity index 100%
rename from src/covid19/blueprints/intensivregister/__init__.py
rename to src/flask_covid19/blueprints/intensivregister/__init__.py
diff --git a/src/covid19/blueprints/intensivregister_test/__init__.py b/src/flask_covid19/blueprints/intensivregister_test/__init__.py
similarity index 100%
rename from src/covid19/blueprints/intensivregister_test/__init__.py
rename to src/flask_covid19/blueprints/intensivregister_test/__init__.py
diff --git a/src/covid19/blueprints/owid/__init__.py b/src/flask_covid19/blueprints/owid/__init__.py
similarity index 100%
rename from src/covid19/blueprints/owid/__init__.py
rename to src/flask_covid19/blueprints/owid/__init__.py
diff --git a/src/covid19/blueprints/owid/owid_model.py b/src/flask_covid19/blueprints/owid/owid_model.py
similarity index 99%
rename from src/covid19/blueprints/owid/owid_model.py
rename to src/flask_covid19/blueprints/owid/owid_model.py
index 591028bc73d48e650dfd6bf9269375f1dbc69869..13200b2bfb3597aae1d10a9de194e868ba682e6c 100644
--- a/src/covid19/blueprints/owid/owid_model.py
+++ b/src/flask_covid19/blueprints/owid/owid_model.py
@@ -3,7 +3,7 @@ from datetime import date
 from sqlalchemy.orm import joinedload, subqueryload
 
 from database import db, ITEMS_PER_PAGE
-from covid19.blueprints.app_all.all_model import ApplicationDateReported, ApplicationRegion
+from flask_covid19 import ApplicationDateReported, ApplicationRegion
 
 
 class OwidDateReported(ApplicationDateReported):
diff --git a/src/covid19/blueprints/owid/owid_model_import.py b/src/flask_covid19/blueprints/owid/owid_model_import.py
similarity index 100%
rename from src/covid19/blueprints/owid/owid_model_import.py
rename to src/flask_covid19/blueprints/owid/owid_model_import.py
diff --git a/src/covid19/blueprints/owid/owid_service.py b/src/flask_covid19/blueprints/owid/owid_service.py
similarity index 84%
rename from src/covid19/blueprints/owid/owid_service.py
rename to src/flask_covid19/blueprints/owid/owid_service.py
index ffc4b5b774374334961805f4c128a3625c5cd63c..3e3026feecc71dd3ccdb4d47cc8da5c87ddc91d7 100644
--- a/src/covid19/blueprints/owid/owid_service.py
+++ b/src/flask_covid19/blueprints/owid/owid_service.py
@@ -2,10 +2,10 @@ from flask import flash
 
 from database import app
 
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.app_all.all_service_download import ApplicationServiceDownload
-from covid19.blueprints.owid.owid_service_import import OwidServiceImport
-from covid19.blueprints.owid.owid_service_update import OwidServiceUpdate, OwidServiceUpdateFull
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import ApplicationServiceDownload
+from flask_covid19 import OwidServiceImport
+from flask_covid19 import OwidServiceUpdate, OwidServiceUpdateFull
 
 
 class OwidService:
diff --git a/src/covid19/blueprints/owid/owid_service_import.py b/src/flask_covid19/blueprints/owid/owid_service_import.py
similarity index 97%
rename from src/covid19/blueprints/owid/owid_service_import.py
rename to src/flask_covid19/blueprints/owid/owid_service_import.py
index 1a44ef38d674e8d34a1cd2ea6f4542d430a74550..29020bc3e9631e4351b4fce56f71a9c89e776f66 100644
--- a/src/covid19/blueprints/owid/owid_service_import.py
+++ b/src/flask_covid19/blueprints/owid/owid_service_import.py
@@ -1,9 +1,9 @@
 import csv
 import psycopg2
 from database import db, app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.owid.owid_model import OwidDateReported
-from covid19.blueprints.owid.owid_model_import import OwidImport
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import OwidDateReported
+from flask_covid19 import OwidImport
 
 
 class OwidServiceImport:
diff --git a/src/covid19/blueprints/owid/owid_service_update.py b/src/flask_covid19/blueprints/owid/owid_service_update.py
similarity index 98%
rename from src/covid19/blueprints/owid/owid_service_update.py
rename to src/flask_covid19/blueprints/owid/owid_service_update.py
index 02b4c44d57d97af1af25d790d976694a35691e0c..1d1c49809f0ed4062ce00d0173a28f605726247f 100644
--- a/src/covid19/blueprints/owid/owid_service_update.py
+++ b/src/flask_covid19/blueprints/owid/owid_service_update.py
@@ -1,7 +1,7 @@
 from database import db, app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.owid.owid_model import OwidDateReported, OwidData, OwidContinent, OwidCountry
-from covid19.blueprints.owid.owid_model_import import OwidImport
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import OwidDateReported, OwidData, OwidContinent, OwidCountry
+from flask_covid19 import OwidImport
 
 
 class OwidServiceUpdateBase:
diff --git a/src/covid19/blueprints/owid/owid_views.py b/src/flask_covid19/blueprints/owid/owid_views.py
similarity index 97%
rename from src/covid19/blueprints/owid/owid_views.py
rename to src/flask_covid19/blueprints/owid/owid_views.py
index fcd5b554f09f30464bcd647f7e1b61b47efa9e5f..d1bd6c34119caa0453d9567a960a62ecd6f98b2d 100644
--- a/src/covid19/blueprints/owid/owid_views.py
+++ b/src/flask_covid19/blueprints/owid/owid_views.py
@@ -5,14 +5,14 @@ from celery.utils.log import get_task_logger
 from flask_admin.contrib.sqla import ModelView
 
 from database import app, admin, db
-from covid19.blueprints.app_all.all_services import who_service, owid_service
-from covid19.blueprints.app_all.all_services import rki_service, rki_vaccination_service
-from covid19.blueprints.app_all.all_services import ecdc_service, divi_service
-from covid19.blueprints.app_all.all_services import app_admin_service, app_user_service
-from covid19.blueprints.app_mq.application_workers import celery
-from covid19.blueprints.app_application.application_model_transient import ApplicationPage
-from covid19.blueprints.owid.owid_model import OwidDateReported, OwidData, OwidContinent, OwidCountry
-from covid19.blueprints.owid.owid_model_import import OwidImport
+from flask_covid19 import who_service, owid_service
+from flask_covid19 import rki_service, rki_vaccination_service
+from flask_covid19 import ecdc_service, divi_service
+from flask_covid19 import app_admin_service, app_user_service
+from flask_covid19 import celery
+from flask_covid19 import ApplicationPage
+from flask_covid19 import OwidDateReported, OwidData, OwidContinent, OwidCountry
+from flask_covid19 import OwidImport
 
 
 app_owid = Blueprint('owid', __name__, template_folder='templates', url_prefix='/owid ')
diff --git a/src/covid19/blueprints/owid/templates/__init__.py b/src/flask_covid19/blueprints/owid/templates/__init__.py
similarity index 100%
rename from src/covid19/blueprints/owid/templates/__init__.py
rename to src/flask_covid19/blueprints/owid/templates/__init__.py
diff --git a/src/covid19/blueprints/owid/templates/owid/continent/owid_continent_all.html b/src/flask_covid19/blueprints/owid/templates/owid/continent/owid_continent_all.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/continent/owid_continent_all.html
rename to src/flask_covid19/blueprints/owid/templates/owid/continent/owid_continent_all.html
diff --git a/src/covid19/blueprints/owid/templates/owid/continent/owid_continent_all_pagination.html b/src/flask_covid19/blueprints/owid/templates/owid/continent/owid_continent_all_pagination.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/continent/owid_continent_all_pagination.html
rename to src/flask_covid19/blueprints/owid/templates/owid/continent/owid_continent_all_pagination.html
diff --git a/src/covid19/blueprints/owid/templates/owid/continent/owid_continent_all_table.html b/src/flask_covid19/blueprints/owid/templates/owid/continent/owid_continent_all_table.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/continent/owid_continent_all_table.html
rename to src/flask_covid19/blueprints/owid/templates/owid/continent/owid_continent_all_table.html
diff --git a/src/covid19/blueprints/owid/templates/owid/continent/owid_continent_one.html b/src/flask_covid19/blueprints/owid/templates/owid/continent/owid_continent_one.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/continent/owid_continent_one.html
rename to src/flask_covid19/blueprints/owid/templates/owid/continent/owid_continent_one.html
diff --git a/src/covid19/blueprints/owid/templates/owid/continent/owid_continent_one_pagination.html b/src/flask_covid19/blueprints/owid/templates/owid/continent/owid_continent_one_pagination.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/continent/owid_continent_one_pagination.html
rename to src/flask_covid19/blueprints/owid/templates/owid/continent/owid_continent_one_pagination.html
diff --git a/src/covid19/blueprints/owid/templates/owid/country/owid_country_all.html b/src/flask_covid19/blueprints/owid/templates/owid/country/owid_country_all.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/country/owid_country_all.html
rename to src/flask_covid19/blueprints/owid/templates/owid/country/owid_country_all.html
diff --git a/src/covid19/blueprints/owid/templates/owid/country/owid_country_all_pagination.html b/src/flask_covid19/blueprints/owid/templates/owid/country/owid_country_all_pagination.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/country/owid_country_all_pagination.html
rename to src/flask_covid19/blueprints/owid/templates/owid/country/owid_country_all_pagination.html
diff --git a/src/covid19/blueprints/owid/templates/owid/country/owid_country_all_table.html b/src/flask_covid19/blueprints/owid/templates/owid/country/owid_country_all_table.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/country/owid_country_all_table.html
rename to src/flask_covid19/blueprints/owid/templates/owid/country/owid_country_all_table.html
diff --git a/src/covid19/blueprints/owid/templates/owid/country/owid_country_one.html b/src/flask_covid19/blueprints/owid/templates/owid/country/owid_country_one.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/country/owid_country_one.html
rename to src/flask_covid19/blueprints/owid/templates/owid/country/owid_country_one.html
diff --git a/src/covid19/blueprints/owid/templates/owid/country/owid_country_one_germany.html b/src/flask_covid19/blueprints/owid/templates/owid/country/owid_country_one_germany.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/country/owid_country_one_germany.html
rename to src/flask_covid19/blueprints/owid/templates/owid/country/owid_country_one_germany.html
diff --git a/src/covid19/blueprints/owid/templates/owid/country/owid_country_one_germany_pagination.html b/src/flask_covid19/blueprints/owid/templates/owid/country/owid_country_one_germany_pagination.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/country/owid_country_one_germany_pagination.html
rename to src/flask_covid19/blueprints/owid/templates/owid/country/owid_country_one_germany_pagination.html
diff --git a/src/covid19/blueprints/owid/templates/owid/country/owid_country_one_pagination.html b/src/flask_covid19/blueprints/owid/templates/owid/country/owid_country_one_pagination.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/country/owid_country_one_pagination.html
rename to src/flask_covid19/blueprints/owid/templates/owid/country/owid_country_one_pagination.html
diff --git a/src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_all.html b/src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_all.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_all.html
rename to src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_all.html
diff --git a/src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_all_pagination.html b/src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_all_pagination.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_all_pagination.html
rename to src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_all_pagination.html
diff --git a/src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_all_table.html b/src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_all_table.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_all_table.html
rename to src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_all_table.html
diff --git a/src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one.html b/src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one.html
rename to src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one.html
diff --git a/src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_cases_cumulative.html b/src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_cases_cumulative.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_cases_cumulative.html
rename to src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_cases_cumulative.html
diff --git a/src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_cases_cumulative_pagination.html b/src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_cases_cumulative_pagination.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_cases_cumulative_pagination.html
rename to src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_cases_cumulative_pagination.html
diff --git a/src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_cases_new.html b/src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_cases_new.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_cases_new.html
rename to src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_cases_new.html
diff --git a/src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_cases_new_pagination.html b/src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_cases_new_pagination.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_cases_new_pagination.html
rename to src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_cases_new_pagination.html
diff --git a/src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_deaths_cumulative.html b/src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_deaths_cumulative.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_deaths_cumulative.html
rename to src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_deaths_cumulative.html
diff --git a/src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_deaths_cumulative_pagination.html b/src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_deaths_cumulative_pagination.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_deaths_cumulative_pagination.html
rename to src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_deaths_cumulative_pagination.html
diff --git a/src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_deaths_new.html b/src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_deaths_new.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_deaths_new.html
rename to src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_deaths_new.html
diff --git a/src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_deaths_new_pagination.html b/src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_deaths_new_pagination.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_deaths_new_pagination.html
rename to src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_deaths_new_pagination.html
diff --git a/src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_pagination.html b/src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_pagination.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_pagination.html
rename to src/flask_covid19/blueprints/owid/templates/owid/date_reported/owid_date_reported_one_pagination.html
diff --git a/src/covid19/blueprints/owid/templates/owid/imported/owid_imported.html b/src/flask_covid19/blueprints/owid/templates/owid/imported/owid_imported.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/imported/owid_imported.html
rename to src/flask_covid19/blueprints/owid/templates/owid/imported/owid_imported.html
diff --git a/src/covid19/blueprints/owid/templates/owid/imported/owid_imported_pagination.html b/src/flask_covid19/blueprints/owid/templates/owid/imported/owid_imported_pagination.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/imported/owid_imported_pagination.html
rename to src/flask_covid19/blueprints/owid/templates/owid/imported/owid_imported_pagination.html
diff --git a/src/covid19/blueprints/owid/templates/owid/imported/owid_imported_table.html b/src/flask_covid19/blueprints/owid/templates/owid/imported/owid_imported_table.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/imported/owid_imported_table.html
rename to src/flask_covid19/blueprints/owid/templates/owid/imported/owid_imported_table.html
diff --git a/src/covid19/blueprints/owid/templates/owid/navigation/owid_navbar_dropdown.html b/src/flask_covid19/blueprints/owid/templates/owid/navigation/owid_navbar_dropdown.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/navigation/owid_navbar_dropdown.html
rename to src/flask_covid19/blueprints/owid/templates/owid/navigation/owid_navbar_dropdown.html
diff --git a/src/covid19/blueprints/owid/templates/owid/navigation/owid_navtabs.html b/src/flask_covid19/blueprints/owid/templates/owid/navigation/owid_navtabs.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/navigation/owid_navtabs.html
rename to src/flask_covid19/blueprints/owid/templates/owid/navigation/owid_navtabs.html
diff --git a/src/covid19/blueprints/owid/templates/owid/owid_data/owid_data_table.html b/src/flask_covid19/blueprints/owid/templates/owid/owid_data/owid_data_table.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/owid_data/owid_data_table.html
rename to src/flask_covid19/blueprints/owid/templates/owid/owid_data/owid_data_table.html
diff --git a/src/covid19/blueprints/owid/templates/owid/owid_info.html b/src/flask_covid19/blueprints/owid/templates/owid/owid_info.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/owid_info.html
rename to src/flask_covid19/blueprints/owid/templates/owid/owid_info.html
diff --git a/src/covid19/blueprints/owid/templates/owid/owid_tasks.html b/src/flask_covid19/blueprints/owid/templates/owid/owid_tasks.html
similarity index 100%
rename from src/covid19/blueprints/owid/templates/owid/owid_tasks.html
rename to src/flask_covid19/blueprints/owid/templates/owid/owid_tasks.html
diff --git a/src/covid19/blueprints/owid_test/__init__.py b/src/flask_covid19/blueprints/owid_test/__init__.py
similarity index 100%
rename from src/covid19/blueprints/owid_test/__init__.py
rename to src/flask_covid19/blueprints/owid_test/__init__.py
diff --git a/src/covid19/blueprints/owid_test/owid_test_service.py b/src/flask_covid19/blueprints/owid_test/owid_test_service.py
similarity index 96%
rename from src/covid19/blueprints/owid_test/owid_test_service.py
rename to src/flask_covid19/blueprints/owid_test/owid_test_service.py
index 7b24b3e89230d1106eaae8e93d4d12a110ae7f88..8cbddfa15c141ed6a19bfd7b63a205ba17702064 100644
--- a/src/covid19/blueprints/owid_test/owid_test_service.py
+++ b/src/flask_covid19/blueprints/owid_test/owid_test_service.py
@@ -1,7 +1,7 @@
 from database import db, app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.owid.owid_model import OwidDateReported, OwidData, OwidContinent, OwidCountry
-from covid19.blueprints.owid.owid_model_import import OwidImport
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import OwidDateReported, OwidData, OwidContinent, OwidCountry
+from flask_covid19 import OwidImport
 
 
 class OwidTestService:
diff --git a/src/covid19/blueprints/owid_test/owid_test_views.py b/src/flask_covid19/blueprints/owid_test/owid_test_views.py
similarity index 93%
rename from src/covid19/blueprints/owid_test/owid_test_views.py
rename to src/flask_covid19/blueprints/owid_test/owid_test_views.py
index c6cc073a9f893ed9924450fb364e63d9b45a777d..eb7e44f9e55546e2b5af691e58b259a97abe9e7b 100644
--- a/src/covid19/blueprints/owid_test/owid_test_views.py
+++ b/src/flask_covid19/blueprints/owid_test/owid_test_views.py
@@ -4,16 +4,16 @@ from celery.utils.log import get_task_logger
 from flask_login import login_required
 
 from database import app, db
-from covid19.blueprints.app_all.all_services import who_service, owid_service
-from covid19.blueprints.app_all.all_services import rki_service, rki_vaccination_service
-from covid19.blueprints.app_all.all_services import ecdc_service, divi_service
-from covid19.blueprints.app_all.all_services import app_admin_service, app_user_service
-from covid19.blueprints.app_mq.application_workers import celery
-from covid19.blueprints.owid.owid_model import OwidData
-from covid19.blueprints.owid.owid_model_import import OwidImport
-from covid19.blueprints.app_application.application_model_transient import ApplicationPage
-
-from covid19.blueprints.owid_test.owid_test_service import OwidTestService
+from flask_covid19 import who_service, owid_service
+from flask_covid19 import rki_service, rki_vaccination_service
+from flask_covid19 import ecdc_service, divi_service
+from flask_covid19 import app_admin_service, app_user_service
+from flask_covid19 import celery
+from flask_covid19 import OwidData
+from flask_covid19 import OwidImport
+from flask_covid19 import ApplicationPage
+
+from flask_covid19.blueprints.owid_test import OwidTestService
 
 owid_test_service = OwidTestService(db, owid_service)
 
diff --git a/src/covid19/blueprints/owid_test/templates/__init__.py b/src/flask_covid19/blueprints/owid_test/templates/__init__.py
similarity index 100%
rename from src/covid19/blueprints/owid_test/templates/__init__.py
rename to src/flask_covid19/blueprints/owid_test/templates/__init__.py
diff --git a/src/covid19/blueprints/owid_test/templates/owid_test/owid_tests.html b/src/flask_covid19/blueprints/owid_test/templates/owid_test/owid_tests.html
similarity index 100%
rename from src/covid19/blueprints/owid_test/templates/owid_test/owid_tests.html
rename to src/flask_covid19/blueprints/owid_test/templates/owid_test/owid_tests.html
diff --git a/src/covid19/blueprints/rki_cases/__init__.py b/src/flask_covid19/blueprints/rki_cases/__init__.py
similarity index 100%
rename from src/covid19/blueprints/rki_cases/__init__.py
rename to src/flask_covid19/blueprints/rki_cases/__init__.py
diff --git a/src/covid19/blueprints/rki_cases/a.py b/src/flask_covid19/blueprints/rki_cases/a.py
similarity index 100%
rename from src/covid19/blueprints/rki_cases/a.py
rename to src/flask_covid19/blueprints/rki_cases/a.py
diff --git a/src/covid19/blueprints/rki_cases/rki_model.py b/src/flask_covid19/blueprints/rki_cases/rki_model.py
similarity index 98%
rename from src/covid19/blueprints/rki_cases/rki_model.py
rename to src/flask_covid19/blueprints/rki_cases/rki_model.py
index c3923ad3f093ddef35ed92f86becbf9e827781d1..28de848bb66a22e893113aa1beaf77acab9eebf5 100644
--- a/src/covid19/blueprints/rki_cases/rki_model.py
+++ b/src/flask_covid19/blueprints/rki_cases/rki_model.py
@@ -3,7 +3,7 @@ from datetime import date
 from sqlalchemy.orm import joinedload, subqueryload
 
 from database import db, ITEMS_PER_PAGE
-from covid19.blueprints.app_all.all_model import ApplicationDateReported, ApplicationRegion
+from flask_covid19 import ApplicationDateReported, ApplicationRegion
 
 
 class RkiMeldedatum(ApplicationDateReported):
diff --git a/src/covid19/blueprints/rki_cases/rki_model_import.py b/src/flask_covid19/blueprints/rki_cases/rki_model_import.py
similarity index 100%
rename from src/covid19/blueprints/rki_cases/rki_model_import.py
rename to src/flask_covid19/blueprints/rki_cases/rki_model_import.py
diff --git a/src/covid19/blueprints/rki_cases/rki_service.py b/src/flask_covid19/blueprints/rki_cases/rki_service.py
similarity index 84%
rename from src/covid19/blueprints/rki_cases/rki_service.py
rename to src/flask_covid19/blueprints/rki_cases/rki_service.py
index d019e63e9a8cd0aa7e0064a6737a2bbc5f3e767a..16a767ce9591c2d12cf4303296b0df55b19a63a1 100644
--- a/src/covid19/blueprints/rki_cases/rki_service.py
+++ b/src/flask_covid19/blueprints/rki_cases/rki_service.py
@@ -1,10 +1,10 @@
 from flask import flash
 
 from database import app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.app_all.all_service_download import ApplicationServiceDownload
-from covid19.blueprints.rki_cases.rki_service_import import RkiServiceImport
-from covid19.blueprints.rki_cases.rki_service_update import RkiServiceUpdate, RkiServiceUpdateFull
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import ApplicationServiceDownload
+from flask_covid19 import RkiServiceImport
+from flask_covid19 import RkiServiceUpdate, RkiServiceUpdateFull
 
 
 class RkiService:
diff --git a/src/covid19/blueprints/rki_cases/rki_service_import.py b/src/flask_covid19/blueprints/rki_cases/rki_service_import.py
similarity index 96%
rename from src/covid19/blueprints/rki_cases/rki_service_import.py
rename to src/flask_covid19/blueprints/rki_cases/rki_service_import.py
index 71702ab922263add7f181a96941f7785256b1d87..e40e9461b031277378e97fd57faf31267a7fd929 100644
--- a/src/covid19/blueprints/rki_cases/rki_service_import.py
+++ b/src/flask_covid19/blueprints/rki_cases/rki_service_import.py
@@ -2,8 +2,8 @@ import csv
 import psycopg2
 
 from database import db, app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.rki_cases.rki_model_import import RkiImport
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import RkiImport
 
 
 class RkiServiceImport:
diff --git a/src/covid19/blueprints/rki_cases/rki_service_update.py b/src/flask_covid19/blueprints/rki_cases/rki_service_update.py
similarity index 97%
rename from src/covid19/blueprints/rki_cases/rki_service_update.py
rename to src/flask_covid19/blueprints/rki_cases/rki_service_update.py
index 6df9ad9bd1b49479b3e54abff5c5bba23b619790..8f72ccf5bd622214df9417f0b2609ef9245e9191 100644
--- a/src/covid19/blueprints/rki_cases/rki_service_update.py
+++ b/src/flask_covid19/blueprints/rki_cases/rki_service_update.py
@@ -1,8 +1,8 @@
 from database import db, app
 
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.rki_cases.rki_model import RkiData, RkiMeldedatum
-from covid19.blueprints.rki_cases.rki_model_import import RkiImport
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import RkiData, RkiMeldedatum
+from flask_covid19 import RkiImport
 
 
 class RkiServiceUpdateBase:
diff --git a/src/covid19/blueprints/rki_cases/rki_views.py b/src/flask_covid19/blueprints/rki_cases/rki_views.py
similarity index 92%
rename from src/covid19/blueprints/rki_cases/rki_views.py
rename to src/flask_covid19/blueprints/rki_cases/rki_views.py
index 0d6b112c05735e8b9f46075e44275929d6cbdd09..50b092d1ebeec467987deb5116369878137806f2 100644
--- a/src/covid19/blueprints/rki_cases/rki_views.py
+++ b/src/flask_covid19/blueprints/rki_cases/rki_views.py
@@ -4,14 +4,14 @@ from flask_admin.contrib.sqla import ModelView
 from celery import states
 
 from database import app, admin, db
-from covid19.blueprints.app_mq.application_workers import celery
-from covid19.blueprints.app_all.all_services import who_service, owid_service
-from covid19.blueprints.app_all.all_services import rki_service, rki_vaccination_service
-from covid19.blueprints.app_all.all_services import ecdc_service, divi_service
-from covid19.blueprints.app_all.all_services import app_admin_service, app_user_service
-from covid19.blueprints.rki_cases.rki_model import RkiData, RkiMeldedatum
-from covid19.blueprints.rki_cases.rki_model_import import RkiImport
-from covid19.blueprints.app_application.application_model_transient import ApplicationPage
+from flask_covid19 import celery
+from flask_covid19 import who_service, owid_service
+from flask_covid19 import rki_service, rki_vaccination_service
+from flask_covid19 import ecdc_service, divi_service
+from flask_covid19 import app_admin_service, app_user_service
+from flask_covid19 import RkiData, RkiMeldedatum
+from flask_covid19 import RkiImport
+from flask_covid19 import ApplicationPage
 
 drop_and_create_data_again = True
 
diff --git a/src/covid19/blueprints/rki_cases/templates/__init__.py b/src/flask_covid19/blueprints/rki_cases/templates/__init__.py
similarity index 100%
rename from src/covid19/blueprints/rki_cases/templates/__init__.py
rename to src/flask_covid19/blueprints/rki_cases/templates/__init__.py
diff --git a/src/covid19/blueprints/rki_cases/templates/rki/date_reported/rki_date_reported_all.html b/src/flask_covid19/blueprints/rki_cases/templates/rki/date_reported/rki_date_reported_all.html
similarity index 100%
rename from src/covid19/blueprints/rki_cases/templates/rki/date_reported/rki_date_reported_all.html
rename to src/flask_covid19/blueprints/rki_cases/templates/rki/date_reported/rki_date_reported_all.html
diff --git a/src/covid19/blueprints/rki_cases/templates/rki/date_reported/rki_date_reported_all_pagination.html b/src/flask_covid19/blueprints/rki_cases/templates/rki/date_reported/rki_date_reported_all_pagination.html
similarity index 100%
rename from src/covid19/blueprints/rki_cases/templates/rki/date_reported/rki_date_reported_all_pagination.html
rename to src/flask_covid19/blueprints/rki_cases/templates/rki/date_reported/rki_date_reported_all_pagination.html
diff --git a/src/covid19/blueprints/rki_cases/templates/rki/date_reported/rki_date_reported_all_table.html b/src/flask_covid19/blueprints/rki_cases/templates/rki/date_reported/rki_date_reported_all_table.html
similarity index 100%
rename from src/covid19/blueprints/rki_cases/templates/rki/date_reported/rki_date_reported_all_table.html
rename to src/flask_covid19/blueprints/rki_cases/templates/rki/date_reported/rki_date_reported_all_table.html
diff --git a/src/covid19/blueprints/rki_cases/templates/rki/navigation/rki_navbar_dropdown.html b/src/flask_covid19/blueprints/rki_cases/templates/rki/navigation/rki_navbar_dropdown.html
similarity index 100%
rename from src/covid19/blueprints/rki_cases/templates/rki/navigation/rki_navbar_dropdown.html
rename to src/flask_covid19/blueprints/rki_cases/templates/rki/navigation/rki_navbar_dropdown.html
diff --git a/src/covid19/blueprints/rki_cases/templates/rki/navigation/rki_navtabs.html b/src/flask_covid19/blueprints/rki_cases/templates/rki/navigation/rki_navtabs.html
similarity index 100%
rename from src/covid19/blueprints/rki_cases/templates/rki/navigation/rki_navtabs.html
rename to src/flask_covid19/blueprints/rki_cases/templates/rki/navigation/rki_navtabs.html
diff --git a/src/covid19/blueprints/rki_cases/templates/rki/rki_imported.html b/src/flask_covid19/blueprints/rki_cases/templates/rki/rki_imported.html
similarity index 100%
rename from src/covid19/blueprints/rki_cases/templates/rki/rki_imported.html
rename to src/flask_covid19/blueprints/rki_cases/templates/rki/rki_imported.html
diff --git a/src/covid19/blueprints/rki_cases/templates/rki/rki_info.html b/src/flask_covid19/blueprints/rki_cases/templates/rki/rki_info.html
similarity index 100%
rename from src/covid19/blueprints/rki_cases/templates/rki/rki_info.html
rename to src/flask_covid19/blueprints/rki_cases/templates/rki/rki_info.html
diff --git a/src/covid19/blueprints/rki_cases/templates/rki/rki_tasks.html b/src/flask_covid19/blueprints/rki_cases/templates/rki/rki_tasks.html
similarity index 100%
rename from src/covid19/blueprints/rki_cases/templates/rki/rki_tasks.html
rename to src/flask_covid19/blueprints/rki_cases/templates/rki/rki_tasks.html
diff --git a/src/covid19/blueprints/rki_cases/templates/rki/rki_test.html b/src/flask_covid19/blueprints/rki_cases/templates/rki/rki_test.html
similarity index 100%
rename from src/covid19/blueprints/rki_cases/templates/rki/rki_test.html
rename to src/flask_covid19/blueprints/rki_cases/templates/rki/rki_test.html
diff --git a/src/covid19/blueprints/rki_cases_test/__init__.py b/src/flask_covid19/blueprints/rki_cases_test/__init__.py
similarity index 100%
rename from src/covid19/blueprints/rki_cases_test/__init__.py
rename to src/flask_covid19/blueprints/rki_cases_test/__init__.py
diff --git a/src/covid19/blueprints/rki_cases_test/rki_test_service.py b/src/flask_covid19/blueprints/rki_cases_test/rki_test_service.py
similarity index 96%
rename from src/covid19/blueprints/rki_cases_test/rki_test_service.py
rename to src/flask_covid19/blueprints/rki_cases_test/rki_test_service.py
index 8bc2880debe430497c893b57215b70401535323e..f6084f340b04401351caf6352423d161f1db0014 100644
--- a/src/covid19/blueprints/rki_cases_test/rki_test_service.py
+++ b/src/flask_covid19/blueprints/rki_cases_test/rki_test_service.py
@@ -1,7 +1,7 @@
 from database import db, app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.rki.rki_model import RkiData, RkiDateReported, RkiCountryRegion, RkiCountry
-from covid19.blueprints.rki.rki_model_import import RkiImport
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import RkiData, RkiDateReported, RkiCountryRegion, RkiCountry
+from flask_covid19 import RkiImport
 
 
 class RkiTestService:
diff --git a/src/covid19/blueprints/rki_cases_test/rki_test_views.py b/src/flask_covid19/blueprints/rki_cases_test/rki_test_views.py
similarity index 93%
rename from src/covid19/blueprints/rki_cases_test/rki_test_views.py
rename to src/flask_covid19/blueprints/rki_cases_test/rki_test_views.py
index 5ce409c5f7b4f3fcc744a8afdd8c733a891baad8..28b780aa53e38bbc946dc3d6e8330a50f857b7d9 100644
--- a/src/covid19/blueprints/rki_cases_test/rki_test_views.py
+++ b/src/flask_covid19/blueprints/rki_cases_test/rki_test_views.py
@@ -5,16 +5,13 @@ from flask_login import login_required
 
 from database import app, db
 
-from covid19.blueprints.app_all.all_services import who_service, owid_service
-from covid19.blueprints.app_all.all_services import rki_service, rki_vaccination_service
-from covid19.blueprints.app_all.all_services import ecdc_service, divi_service
-from covid19.blueprints.app_all.all_services import app_admin_service, app_user_service
-from covid19.blueprints.app_mq.application_workers import celery
-from covid19.blueprints.rki_cases.rki_model import RkiData
-from covid19.blueprints.rki_cases.rki_model_import import RkiImport
-from covid19.blueprints.app_application.application_model_transient import ApplicationPage
-
-from covid19.blueprints.owid_test.owid_test_service import OwidTestService
+from flask_covid19 import rki_service
+from flask_covid19 import celery
+from flask_covid19 import RkiData
+from flask_covid19 import RkiImport
+from flask_covid19 import ApplicationPage
+
+from flask_covid19.blueprints.owid_test import OwidTestService
 
 rki_test_service = OwidTestService(db, rki_service)
 
diff --git a/src/covid19/blueprints/rki_cases_test/templates/__init__.py b/src/flask_covid19/blueprints/rki_cases_test/templates/__init__.py
similarity index 100%
rename from src/covid19/blueprints/rki_cases_test/templates/__init__.py
rename to src/flask_covid19/blueprints/rki_cases_test/templates/__init__.py
diff --git a/src/covid19/blueprints/rki_cases_test/templates/rki_test/rki_tests.html b/src/flask_covid19/blueprints/rki_cases_test/templates/rki_test/rki_tests.html
similarity index 100%
rename from src/covid19/blueprints/rki_cases_test/templates/rki_test/rki_tests.html
rename to src/flask_covid19/blueprints/rki_cases_test/templates/rki_test/rki_tests.html
diff --git a/src/covid19/blueprints/rki_vaccination/__init__.py b/src/flask_covid19/blueprints/rki_vaccination/__init__.py
similarity index 100%
rename from src/covid19/blueprints/rki_vaccination/__init__.py
rename to src/flask_covid19/blueprints/rki_vaccination/__init__.py
diff --git a/src/covid19/blueprints/rki_vaccination/rki_vaccination_model.py b/src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_model.py
similarity index 97%
rename from src/covid19/blueprints/rki_vaccination/rki_vaccination_model.py
rename to src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_model.py
index 873bd31e69756bc49bed6dbb43ebf9a0aafa9639..92648afdf08f4c3f8b92aea49335dfc678b69668 100644
--- a/src/covid19/blueprints/rki_vaccination/rki_vaccination_model.py
+++ b/src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_model.py
@@ -1,7 +1,7 @@
 from datetime import date
 
 from database import db, ITEMS_PER_PAGE
-from covid19.blueprints.app_all.all_model import ApplicationDateReported, ApplicationRegion
+from flask_covid19 import ApplicationDateReported, ApplicationRegion
 
 
 class RkiVaccinationDateReported(ApplicationDateReported):
diff --git a/src/covid19/blueprints/rki_vaccination/rki_vaccination_model_import.py b/src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_model_import.py
similarity index 100%
rename from src/covid19/blueprints/rki_vaccination/rki_vaccination_model_import.py
rename to src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_model_import.py
diff --git a/src/covid19/blueprints/rki_vaccination/rki_vaccination_service.py b/src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_service.py
similarity index 81%
rename from src/covid19/blueprints/rki_vaccination/rki_vaccination_service.py
rename to src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_service.py
index 1b8a383a3c5b30ec79e0890a0877f44d46dbac77..8a778a204de450b63e6e230468b11ad2474dc927 100644
--- a/src/covid19/blueprints/rki_vaccination/rki_vaccination_service.py
+++ b/src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_service.py
@@ -1,10 +1,10 @@
 from flask import flash
 
 from database import app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.app_all.all_service_download import ApplicationServiceDownload
-from covid19.blueprints.rki_vaccination.rki_vaccination_service_import import RkiVaccinationServiceImport
-from covid19.blueprints.rki_vaccination.rki_vaccination_service_update import RkiVaccinationServiceUpdate, RkiVaccinationServiceUpdateFull
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import ApplicationServiceDownload
+from flask_covid19 import RkiVaccinationServiceImport
+from flask_covid19 import RkiVaccinationServiceUpdate, RkiVaccinationServiceUpdateFull
 
 
 class RkiVaccinationService:
diff --git a/src/covid19/blueprints/rki_vaccination/rki_vaccination_service_import.py b/src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_service_import.py
similarity index 94%
rename from src/covid19/blueprints/rki_vaccination/rki_vaccination_service_import.py
rename to src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_service_import.py
index 398fce90f20e057d2d73fefd3a2c4b3589936210..bdb5cdeafa5e638291c4e3e913dd8dde6a0f9d63 100644
--- a/src/covid19/blueprints/rki_vaccination/rki_vaccination_service_import.py
+++ b/src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_service_import.py
@@ -3,9 +3,9 @@ import psycopg2
 
 from database import db, app
 
-from covid19.blueprints.rki_vaccination.rki_vaccination_model import RkiVaccinationDateReported
-from covid19.blueprints.rki_vaccination.rki_vaccination_model_import import RkiVaccinationImport
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
+from flask_covid19 import RkiVaccinationDateReported
+from flask_covid19 import RkiVaccinationImport
+from flask_covid19 import ApplicationServiceConfig
 
 
 class RkiVaccinationServiceImport:
diff --git a/src/covid19/blueprints/rki_vaccination/rki_vaccination_service_update.py b/src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_service_update.py
similarity index 98%
rename from src/covid19/blueprints/rki_vaccination/rki_vaccination_service_update.py
rename to src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_service_update.py
index 407c81bbf6239149dfe4f36802394eff2b623bed..378595bc2849227b7596997ec6b1a712d7b742dd 100644
--- a/src/covid19/blueprints/rki_vaccination/rki_vaccination_service_update.py
+++ b/src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_service_update.py
@@ -1,8 +1,8 @@
 from database import db, app
 
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.rki_vaccination.rki_vaccination_model_import import RkiVaccinationImport
-from covid19.blueprints.rki_vaccination.rki_vaccination_model import RkiVaccinationDateReported, RkiVaccinationData
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import RkiVaccinationImport
+from flask_covid19 import RkiVaccinationDateReported, RkiVaccinationData
 
 class RkiVaccinationServiceUpdateBase:
     def __init__(self, database, config: ApplicationServiceConfig):
diff --git a/src/covid19/blueprints/rki_vaccination/rki_vaccination_views.py b/src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_views.py
similarity index 92%
rename from src/covid19/blueprints/rki_vaccination/rki_vaccination_views.py
rename to src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_views.py
index b39382652fb4d4a04fa3f2e16e0221bbcc0181b1..8ad8ba63eb7d9b9ce8843932e8f503bdfe5ff0ca 100644
--- a/src/covid19/blueprints/rki_vaccination/rki_vaccination_views.py
+++ b/src/flask_covid19/blueprints/rki_vaccination/rki_vaccination_views.py
@@ -4,15 +4,15 @@ from celery.utils.log import get_task_logger
 from flask_admin.contrib.sqla import ModelView
 
 from database import admin, db
-from covid19.blueprints.app_all.all_services import who_service, owid_service
-from covid19.blueprints.app_all.all_services import rki_service, rki_vaccination_service
-from covid19.blueprints.app_all.all_services import ecdc_service, divi_service
-from covid19.blueprints.app_all.all_services import app_admin_service, app_user_service
-from covid19.blueprints.app_mq.application_workers import celery
-
-from covid19.blueprints.rki_vaccination.rki_vaccination_model import RkiVaccinationData, RkiVaccinationDateReported
-from covid19.blueprints.rki_vaccination.rki_vaccination_model_import import RkiVaccinationImport
-from covid19.blueprints.app_application.application_model_transient import ApplicationPage
+from flask_covid19 import who_service, owid_service
+from flask_covid19 import rki_service, rki_vaccination_service
+from flask_covid19 import ecdc_service, divi_service
+from flask_covid19 import app_admin_service, app_user_service
+from flask_covid19 import celery
+
+from flask_covid19 import RkiVaccinationData, RkiVaccinationDateReported
+from flask_covid19 import RkiVaccinationImport
+from flask_covid19 import ApplicationPage
 
 
 app_rki_vaccination = Blueprint('rki_vaccination', __name__, template_folder='templates', url_prefix='/rki/vaccination')
diff --git a/src/covid19/blueprints/rki_vaccination/templates/__init__.py b/src/flask_covid19/blueprints/rki_vaccination/templates/__init__.py
similarity index 100%
rename from src/covid19/blueprints/rki_vaccination/templates/__init__.py
rename to src/flask_covid19/blueprints/rki_vaccination/templates/__init__.py
diff --git a/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/data/rki_vaccination_data.html b/src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/data/rki_vaccination_data.html
similarity index 100%
rename from src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/data/rki_vaccination_data.html
rename to src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/data/rki_vaccination_data.html
diff --git a/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/data/rki_vaccination_data_pagination.html b/src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/data/rki_vaccination_data_pagination.html
similarity index 100%
rename from src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/data/rki_vaccination_data_pagination.html
rename to src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/data/rki_vaccination_data_pagination.html
diff --git a/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/data/rki_vaccination_data_table.html b/src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/data/rki_vaccination_data_table.html
similarity index 100%
rename from src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/data/rki_vaccination_data_table.html
rename to src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/data/rki_vaccination_data_table.html
diff --git a/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/data/rki_vaccination_data_table_head.html b/src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/data/rki_vaccination_data_table_head.html
similarity index 100%
rename from src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/data/rki_vaccination_data_table_head.html
rename to src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/data/rki_vaccination_data_table_head.html
diff --git a/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/imported/rki_vaccination_imported.html b/src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/imported/rki_vaccination_imported.html
similarity index 100%
rename from src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/imported/rki_vaccination_imported.html
rename to src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/imported/rki_vaccination_imported.html
diff --git a/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/imported/rki_vaccination_imported_pagination.html b/src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/imported/rki_vaccination_imported_pagination.html
similarity index 100%
rename from src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/imported/rki_vaccination_imported_pagination.html
rename to src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/imported/rki_vaccination_imported_pagination.html
diff --git a/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/imported/rki_vaccination_imported_table.html b/src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/imported/rki_vaccination_imported_table.html
similarity index 100%
rename from src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/imported/rki_vaccination_imported_table.html
rename to src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/imported/rki_vaccination_imported_table.html
diff --git a/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/navigation/rki_vaccination_navbar_dropdown.html b/src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/navigation/rki_vaccination_navbar_dropdown.html
similarity index 100%
rename from src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/navigation/rki_vaccination_navbar_dropdown.html
rename to src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/navigation/rki_vaccination_navbar_dropdown.html
diff --git a/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/navigation/rki_vaccination_navtabs.html b/src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/navigation/rki_vaccination_navtabs.html
similarity index 100%
rename from src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/navigation/rki_vaccination_navtabs.html
rename to src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/navigation/rki_vaccination_navtabs.html
diff --git a/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/rki_vaccination_info.html b/src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/rki_vaccination_info.html
similarity index 100%
rename from src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/rki_vaccination_info.html
rename to src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/rki_vaccination_info.html
diff --git a/src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/rki_vaccination_tasks.html b/src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/rki_vaccination_tasks.html
similarity index 100%
rename from src/covid19/blueprints/rki_vaccination/templates/rki_vaccination/rki_vaccination_tasks.html
rename to src/flask_covid19/blueprints/rki_vaccination/templates/rki_vaccination/rki_vaccination_tasks.html
diff --git a/src/covid19/blueprints/who/__init__.py b/src/flask_covid19/blueprints/who/__init__.py
similarity index 100%
rename from src/covid19/blueprints/who/__init__.py
rename to src/flask_covid19/blueprints/who/__init__.py
diff --git a/src/covid19/blueprints/who/templates/__init__.py b/src/flask_covid19/blueprints/who/templates/__init__.py
similarity index 100%
rename from src/covid19/blueprints/who/templates/__init__.py
rename to src/flask_covid19/blueprints/who/templates/__init__.py
diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_all.html b/src/flask_covid19/blueprints/who/templates/who/country/who_country_all.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/country/who_country_all.html
rename to src/flask_covid19/blueprints/who/templates/who/country/who_country_all.html
diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_all_pagination.html b/src/flask_covid19/blueprints/who/templates/who/country/who_country_all_pagination.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/country/who_country_all_pagination.html
rename to src/flask_covid19/blueprints/who/templates/who/country/who_country_all_pagination.html
diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_all_table.html b/src/flask_covid19/blueprints/who/templates/who/country/who_country_all_table.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/country/who_country_all_table.html
rename to src/flask_covid19/blueprints/who/templates/who/country/who_country_all_table.html
diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_germany.html b/src/flask_covid19/blueprints/who/templates/who/country/who_country_germany.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/country/who_country_germany.html
rename to src/flask_covid19/blueprints/who/templates/who/country/who_country_germany.html
diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_germany_pagination.html b/src/flask_covid19/blueprints/who/templates/who/country/who_country_germany_pagination.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/country/who_country_germany_pagination.html
rename to src/flask_covid19/blueprints/who/templates/who/country/who_country_germany_pagination.html
diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_one.html b/src/flask_covid19/blueprints/who/templates/who/country/who_country_one.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/country/who_country_one.html
rename to src/flask_covid19/blueprints/who/templates/who/country/who_country_one.html
diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_one_cases_cumulative.html b/src/flask_covid19/blueprints/who/templates/who/country/who_country_one_cases_cumulative.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/country/who_country_one_cases_cumulative.html
rename to src/flask_covid19/blueprints/who/templates/who/country/who_country_one_cases_cumulative.html
diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_one_cases_cumulative_pagination.html b/src/flask_covid19/blueprints/who/templates/who/country/who_country_one_cases_cumulative_pagination.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/country/who_country_one_cases_cumulative_pagination.html
rename to src/flask_covid19/blueprints/who/templates/who/country/who_country_one_cases_cumulative_pagination.html
diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_one_cases_new.html b/src/flask_covid19/blueprints/who/templates/who/country/who_country_one_cases_new.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/country/who_country_one_cases_new.html
rename to src/flask_covid19/blueprints/who/templates/who/country/who_country_one_cases_new.html
diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_one_cases_new_pagination.html b/src/flask_covid19/blueprints/who/templates/who/country/who_country_one_cases_new_pagination.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/country/who_country_one_cases_new_pagination.html
rename to src/flask_covid19/blueprints/who/templates/who/country/who_country_one_cases_new_pagination.html
diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_one_deaths_cumulative.html b/src/flask_covid19/blueprints/who/templates/who/country/who_country_one_deaths_cumulative.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/country/who_country_one_deaths_cumulative.html
rename to src/flask_covid19/blueprints/who/templates/who/country/who_country_one_deaths_cumulative.html
diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_one_deaths_cumulative_pagination.html b/src/flask_covid19/blueprints/who/templates/who/country/who_country_one_deaths_cumulative_pagination.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/country/who_country_one_deaths_cumulative_pagination.html
rename to src/flask_covid19/blueprints/who/templates/who/country/who_country_one_deaths_cumulative_pagination.html
diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_one_deaths_new.html b/src/flask_covid19/blueprints/who/templates/who/country/who_country_one_deaths_new.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/country/who_country_one_deaths_new.html
rename to src/flask_covid19/blueprints/who/templates/who/country/who_country_one_deaths_new.html
diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_one_deaths_new_pagination.html b/src/flask_covid19/blueprints/who/templates/who/country/who_country_one_deaths_new_pagination.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/country/who_country_one_deaths_new_pagination.html
rename to src/flask_covid19/blueprints/who/templates/who/country/who_country_one_deaths_new_pagination.html
diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_one_pagination.html b/src/flask_covid19/blueprints/who/templates/who/country/who_country_one_pagination.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/country/who_country_one_pagination.html
rename to src/flask_covid19/blueprints/who/templates/who/country/who_country_one_pagination.html
diff --git a/src/covid19/blueprints/who/templates/who/country/who_country_one_table.html b/src/flask_covid19/blueprints/who/templates/who/country/who_country_one_table.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/country/who_country_one_table.html
rename to src/flask_covid19/blueprints/who/templates/who/country/who_country_one_table.html
diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_all.html b/src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_all.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_all.html
rename to src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_all.html
diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_all_pagination.html b/src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_all_pagination.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_all_pagination.html
rename to src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_all_pagination.html
diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_all_table.html b/src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_all_table.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_all_table.html
rename to src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_all_table.html
diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one.html b/src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one.html
rename to src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one.html
diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_cumulative.html b/src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_cumulative.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_cumulative.html
rename to src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_cumulative.html
diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_cumulative_pagination.html b/src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_cumulative_pagination.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_cumulative_pagination.html
rename to src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_cumulative_pagination.html
diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_new.html b/src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_new.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_new.html
rename to src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_new.html
diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_new_pagination.html b/src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_new_pagination.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_new_pagination.html
rename to src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_cases_new_pagination.html
diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_cumulative.html b/src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_cumulative.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_cumulative.html
rename to src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_cumulative.html
diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_cumulative_pagination.html b/src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_cumulative_pagination.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_cumulative_pagination.html
rename to src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_cumulative_pagination.html
diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_new.html b/src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_new.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_new.html
rename to src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_deaths_new.html
diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_pagination.html b/src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_pagination.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_pagination.html
rename to src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_pagination.html
diff --git a/src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_table.html b/src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_table.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_table.html
rename to src/flask_covid19/blueprints/who/templates/who/date_reported/who_date_reported_one_table.html
diff --git a/src/covid19/blueprints/who/templates/who/fragments/fragment_who_imported_pagination.html b/src/flask_covid19/blueprints/who/templates/who/fragments/fragment_who_imported_pagination.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/fragments/fragment_who_imported_pagination.html
rename to src/flask_covid19/blueprints/who/templates/who/fragments/fragment_who_imported_pagination.html
diff --git a/src/covid19/blueprints/who/templates/who/fragments/fragment_who_imported_table.html b/src/flask_covid19/blueprints/who/templates/who/fragments/fragment_who_imported_table.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/fragments/fragment_who_imported_table.html
rename to src/flask_covid19/blueprints/who/templates/who/fragments/fragment_who_imported_table.html
diff --git a/src/covid19/blueprints/who/templates/who/fragments/fragment_who_table_global_data.html b/src/flask_covid19/blueprints/who/templates/who/fragments/fragment_who_table_global_data.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/fragments/fragment_who_table_global_data.html
rename to src/flask_covid19/blueprints/who/templates/who/fragments/fragment_who_table_global_data.html
diff --git a/src/covid19/blueprints/who/templates/who/navigation/who_navbar_dropdown.html b/src/flask_covid19/blueprints/who/templates/who/navigation/who_navbar_dropdown.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/navigation/who_navbar_dropdown.html
rename to src/flask_covid19/blueprints/who/templates/who/navigation/who_navbar_dropdown.html
diff --git a/src/covid19/blueprints/who/templates/who/navigation/who_navtabs.html b/src/flask_covid19/blueprints/who/templates/who/navigation/who_navtabs.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/navigation/who_navtabs.html
rename to src/flask_covid19/blueprints/who/templates/who/navigation/who_navtabs.html
diff --git a/src/covid19/blueprints/who/templates/who/region/who_region_all.html b/src/flask_covid19/blueprints/who/templates/who/region/who_region_all.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/region/who_region_all.html
rename to src/flask_covid19/blueprints/who/templates/who/region/who_region_all.html
diff --git a/src/covid19/blueprints/who/templates/who/region/who_region_all_pagination.html b/src/flask_covid19/blueprints/who/templates/who/region/who_region_all_pagination.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/region/who_region_all_pagination.html
rename to src/flask_covid19/blueprints/who/templates/who/region/who_region_all_pagination.html
diff --git a/src/covid19/blueprints/who/templates/who/region/who_region_all_table.html b/src/flask_covid19/blueprints/who/templates/who/region/who_region_all_table.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/region/who_region_all_table.html
rename to src/flask_covid19/blueprints/who/templates/who/region/who_region_all_table.html
diff --git a/src/covid19/blueprints/who/templates/who/region/who_region_one.html b/src/flask_covid19/blueprints/who/templates/who/region/who_region_one.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/region/who_region_one.html
rename to src/flask_covid19/blueprints/who/templates/who/region/who_region_one.html
diff --git a/src/covid19/blueprints/who/templates/who/region/who_region_one_pagination.html b/src/flask_covid19/blueprints/who/templates/who/region/who_region_one_pagination.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/region/who_region_one_pagination.html
rename to src/flask_covid19/blueprints/who/templates/who/region/who_region_one_pagination.html
diff --git a/src/covid19/blueprints/who/templates/who/who_imported.html b/src/flask_covid19/blueprints/who/templates/who/who_imported.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/who_imported.html
rename to src/flask_covid19/blueprints/who/templates/who/who_imported.html
diff --git a/src/covid19/blueprints/who/templates/who/who_info.html b/src/flask_covid19/blueprints/who/templates/who/who_info.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/who_info.html
rename to src/flask_covid19/blueprints/who/templates/who/who_info.html
diff --git a/src/covid19/blueprints/who/templates/who/who_tasks.html b/src/flask_covid19/blueprints/who/templates/who/who_tasks.html
similarity index 100%
rename from src/covid19/blueprints/who/templates/who/who_tasks.html
rename to src/flask_covid19/blueprints/who/templates/who/who_tasks.html
diff --git a/src/covid19/blueprints/who/who_model.py b/src/flask_covid19/blueprints/who/who_model.py
similarity index 99%
rename from src/covid19/blueprints/who/who_model.py
rename to src/flask_covid19/blueprints/who/who_model.py
index cbd0230e637e4a994cc9530002b90f9b1573b3c8..6b016cb74a6a09a2ddab30b64fe73aaa2cb4bbcb 100644
--- a/src/covid19/blueprints/who/who_model.py
+++ b/src/flask_covid19/blueprints/who/who_model.py
@@ -2,7 +2,7 @@ from sqlalchemy import and_
 from datetime import date
 from sqlalchemy.orm import joinedload, subqueryload
 from database import db, cache, ITEMS_PER_PAGE
-from covid19.blueprints.app_all.all_model import ApplicationDateReported, ApplicationRegion
+from flask_covid19 import ApplicationDateReported, ApplicationRegion
 
 
 class WhoDateReported(ApplicationDateReported):
diff --git a/src/covid19/blueprints/who/who_model_import.py b/src/flask_covid19/blueprints/who/who_model_import.py
similarity index 100%
rename from src/covid19/blueprints/who/who_model_import.py
rename to src/flask_covid19/blueprints/who/who_model_import.py
diff --git a/src/covid19/blueprints/who/who_service.py b/src/flask_covid19/blueprints/who/who_service.py
similarity index 88%
rename from src/covid19/blueprints/who/who_service.py
rename to src/flask_covid19/blueprints/who/who_service.py
index 6cfa5d0fdcb0b6fc2a7a9c90b49d69684b1c5c20..d9c63fca0ab7429d8a995b26902409af46198e22 100644
--- a/src/covid19/blueprints/who/who_service.py
+++ b/src/flask_covid19/blueprints/who/who_service.py
@@ -1,10 +1,10 @@
 from flask import flash
 
 from database import app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.app_all.all_service_download import ApplicationServiceDownload
-from covid19.blueprints.who.who_service_import import WhoServiceImport
-from covid19.blueprints.who.who_service_update import WhoServiceUpdate, WhoServiceUpdateFull
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import ApplicationServiceDownload
+from flask_covid19 import WhoServiceImport
+from flask_covid19 import WhoServiceUpdate, WhoServiceUpdateFull
 
 
 class WhoService:
diff --git a/src/covid19/blueprints/who/who_service_import.py b/src/flask_covid19/blueprints/who/who_service_import.py
similarity index 94%
rename from src/covid19/blueprints/who/who_service_import.py
rename to src/flask_covid19/blueprints/who/who_service_import.py
index 2e30a87740ff6cbcb02ae11a93ae0ce35de9567c..6e30124cfd6cdc05acab6e79ddba8a027a2ee37d 100644
--- a/src/covid19/blueprints/who/who_service_import.py
+++ b/src/flask_covid19/blueprints/who/who_service_import.py
@@ -2,9 +2,9 @@ import sys
 import csv
 import psycopg2
 from database import db, app
-from covid19.blueprints.who.who_model import WhoDateReported
-from covid19.blueprints.who.who_model_import import WhoImport
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
+from flask_covid19 import WhoDateReported
+from flask_covid19 import WhoImport
+from flask_covid19 import ApplicationServiceConfig
 
 
 class WhoServiceImport:
diff --git a/src/covid19/blueprints/who/who_service_update.py b/src/flask_covid19/blueprints/who/who_service_update.py
similarity index 99%
rename from src/covid19/blueprints/who/who_service_update.py
rename to src/flask_covid19/blueprints/who/who_service_update.py
index 0712d6a72916efb1af969a98d6ff97afb0f5fff3..26de9ba0ec9476599b4b6b4395d9c2aeaa30287f 100644
--- a/src/covid19/blueprints/who/who_service_update.py
+++ b/src/flask_covid19/blueprints/who/who_service_update.py
@@ -1,7 +1,7 @@
 from database import db, app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.who.who_model import WhoCountryRegion, WhoDateReported, WhoCountry, WhoData
-from covid19.blueprints.who.who_model_import import WhoImport
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import WhoCountryRegion, WhoDateReported, WhoCountry, WhoData
+from flask_covid19 import WhoImport
 
 
 class WhoServiceUpdateBase:
diff --git a/src/covid19/blueprints/who/who_views.py b/src/flask_covid19/blueprints/who/who_views.py
similarity index 98%
rename from src/covid19/blueprints/who/who_views.py
rename to src/flask_covid19/blueprints/who/who_views.py
index 241eb7982b5fa4bd316370f5b07d8b76de657951..ebda63582bd48d00bf2f952104a77c860f16e695 100644
--- a/src/covid19/blueprints/who/who_views.py
+++ b/src/flask_covid19/blueprints/who/who_views.py
@@ -6,12 +6,12 @@ from flask_admin.contrib.sqla import ModelView
 from flask_login import login_required
 
 from database import app, admin, db
-from covid19.blueprints.app_all.all_services import who_service
-from covid19.blueprints.app_mq.application_workers import celery
-from covid19.blueprints.app_application.application_model_transient import ApplicationPage
+from flask_covid19 import who_service
+from flask_covid19 import celery
+from flask_covid19 import ApplicationPage
 
-from covid19.blueprints.who.who_model_import import WhoImport
-from covid19.blueprints.who.who_model import WhoCountryRegion, WhoCountry, WhoDateReported, WhoData
+from flask_covid19 import WhoImport
+from flask_covid19 import WhoCountryRegion, WhoCountry, WhoDateReported, WhoData
 
 
 app_who = Blueprint('who', __name__, template_folder='templates', url_prefix='/who')
diff --git a/src/covid19/blueprints/who_test/__init__.py b/src/flask_covid19/blueprints/who_test/__init__.py
similarity index 100%
rename from src/covid19/blueprints/who_test/__init__.py
rename to src/flask_covid19/blueprints/who_test/__init__.py
diff --git a/src/covid19/blueprints/who_test/templates/__init__.py b/src/flask_covid19/blueprints/who_test/templates/__init__.py
similarity index 100%
rename from src/covid19/blueprints/who_test/templates/__init__.py
rename to src/flask_covid19/blueprints/who_test/templates/__init__.py
diff --git a/src/covid19/blueprints/who_test/templates/who_test/who_tests.html b/src/flask_covid19/blueprints/who_test/templates/who_test/who_tests.html
similarity index 100%
rename from src/covid19/blueprints/who_test/templates/who_test/who_tests.html
rename to src/flask_covid19/blueprints/who_test/templates/who_test/who_tests.html
diff --git a/src/covid19/blueprints/who_test/who_test_service.py b/src/flask_covid19/blueprints/who_test/who_test_service.py
similarity index 94%
rename from src/covid19/blueprints/who_test/who_test_service.py
rename to src/flask_covid19/blueprints/who_test/who_test_service.py
index 93f2fce387ea33ca066090e4597e4aa4f727cf8b..b2301214269cadc370f4371614b78d8f945b8d97 100644
--- a/src/covid19/blueprints/who_test/who_test_service.py
+++ b/src/flask_covid19/blueprints/who_test/who_test_service.py
@@ -1,6 +1,6 @@
 from database import app
-from covid19.blueprints.app_all.all_service_config import ApplicationServiceConfig
-from covid19.blueprints.who.who_model import WhoDateReported, WhoData
+from flask_covid19 import ApplicationServiceConfig
+from flask_covid19 import WhoDateReported, WhoData
 
 
 class WhoTestService:
diff --git a/src/covid19/blueprints/who_test/who_test_views.py b/src/flask_covid19/blueprints/who_test/who_test_views.py
similarity index 94%
rename from src/covid19/blueprints/who_test/who_test_views.py
rename to src/flask_covid19/blueprints/who_test/who_test_views.py
index c04cba9bcef9de5c4867d7d07ce2f8286c3f73a9..925eaf84c53f2bc8fa11a45de9e69751a228e89d 100644
--- a/src/covid19/blueprints/who_test/who_test_views.py
+++ b/src/flask_covid19/blueprints/who_test/who_test_views.py
@@ -4,14 +4,14 @@ from celery.utils.log import get_task_logger
 from flask_login import login_required
 
 from database import app, db
-from covid19.blueprints.app_all.all_services import who_service
-from covid19.blueprints.app_mq.application_workers import celery
-from covid19.blueprints.app_application.application_model_transient import ApplicationPage
+from flask_covid19 import who_service
+from flask_covid19 import celery
+from flask_covid19 import ApplicationPage
 
-from covid19.blueprints.who.who_model_import import WhoImport
-from covid19.blueprints.who.who_model import WhoData
+from flask_covid19 import WhoImport
+from flask_covid19 import WhoData
 
-from covid19.blueprints.who_test.who_test_service import WhoTestService
+from flask_covid19 import WhoTestService
 
 who_test_service = WhoTestService(db, who_service)
 
diff --git a/src/covid19/browserslist b/src/flask_covid19/browserslist
similarity index 100%
rename from src/covid19/browserslist
rename to src/flask_covid19/browserslist
diff --git a/src/covid19/package-lock.json b/src/flask_covid19/package-lock.json
similarity index 100%
rename from src/covid19/package-lock.json
rename to src/flask_covid19/package-lock.json
diff --git a/src/covid19/package.json b/src/flask_covid19/package.json
similarity index 96%
rename from src/covid19/package.json
rename to src/flask_covid19/package.json
index 3350c6b39a12a113b6455e56744a34c62ceccecf..6c6b7f5faae1e12ed33eab46b8abcf084e014cf6 100644
--- a/src/covid19/package.json
+++ b/src/flask_covid19/package.json
@@ -27,7 +27,7 @@
         "build:version": "node scripts/version.js",
         "docker:build": "node scripts/docker/docker-build.js",
         "docker:run": "node scripts/docker/docker-run.js",
-        "postinstall": "./node_modules/.bin/grunt"
+        "postinstall": "../covid19/node_modules/.bin/grunt"
     },
     "private": true,
     "dependencies": {
diff --git a/src/covid19/static/css/covid19python.css b/src/flask_covid19/static/css/covid19python.css
similarity index 100%
rename from src/covid19/static/css/covid19python.css
rename to src/flask_covid19/static/css/covid19python.css
diff --git a/src/covid19/static/favicon.ico b/src/flask_covid19/static/favicon.ico
similarity index 100%
rename from src/covid19/static/favicon.ico
rename to src/flask_covid19/static/favicon.ico
diff --git a/src/covid19/static/index.js b/src/flask_covid19/static/index.js
similarity index 100%
rename from src/covid19/static/index.js
rename to src/flask_covid19/static/index.js
diff --git a/src/covid19/static/js/covid19python.js b/src/flask_covid19/static/js/covid19python.js
similarity index 100%
rename from src/covid19/static/js/covid19python.js
rename to src/flask_covid19/static/js/covid19python.js
diff --git a/src/covid19/static/styles.css b/src/flask_covid19/static/styles.css
similarity index 100%
rename from src/covid19/static/styles.css
rename to src/flask_covid19/static/styles.css
diff --git a/src/mq.py b/src/mq.py
index 9ab036d12b46514d7274bc647a12e02e22f3c8ad..8dacd3b1ae509b6d4760c7d184ca5d74a13ff9b0 100644
--- a/src/mq.py
+++ b/src/mq.py
@@ -1,8 +1,8 @@
 import sys
 import subprocess
-import covid19
-from covid19 import app
-from covid19.blueprints.app_mq.application_workers import celery, run_mq
+import flask_covid19
+from flask_covid19 import app
+from flask_covid19 import celery, run_mq
 
 # Celery: https://docs.celeryproject.org/en/stable/userguide/index.html
 
diff --git a/src/web.py b/src/web.py
index cd585a01856241f70b281dfaef753b9d651928d7..47ea95960ed8aa93325b93039c63bb7e563f0382 100644
--- a/src/web.py
+++ b/src/web.py
@@ -1,4 +1,4 @@
-from covid19 import run_web
+from flask_covid19 import run_web
 
 # ---------------------------------------------------------------------------------
 #  MAIN