-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from a-luna:refactor-app.data.scripts_20240527
++Refactor app.data.scripts.update_all_data module to package
- Loading branch information
Showing
23 changed files
with
265 additions
and
264 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
# flake8: noqa | ||
from app.data.scripts.backup_db_and_json_files import backup_db_and_json_files | ||
from app.data.scripts.bootstrap_unicode_data import bootstrap_unicode_data | ||
from app.data.scripts.get_xml_unicode_db import download_xml_unicode_database | ||
from app.data.scripts.parse_xml_unicode_db import parse_xml_unicode_database | ||
from app.data.scripts.populate_sqlite_db import populate_sqlite_database | ||
from app.data.scripts.save_parsed_data_to_csv import save_parsed_data_to_csv | ||
from app.data.scripts.update_all_data.update_all_data import update_all_data | ||
from app.data.scripts.update_test_data.update_test_data import update_test_data | ||
from app.data.scripts.get_prod_data import get_prod_data | ||
from app.data.scripts.sync_req_files import sync_requirements_files |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# flake8: noqa | ||
from app.data.scripts.update_all_data.backup_db_and_json_files import backup_db_and_json_files | ||
from app.data.scripts.update_all_data.get_api_settings import get_api_settings | ||
from app.data.scripts.update_all_data.get_xml_unicode_db import download_xml_unicode_database | ||
from app.data.scripts.update_all_data.parse_xml_unicode_db import parse_xml_unicode_database | ||
from app.data.scripts.update_all_data.populate_sqlite_db import populate_sqlite_database | ||
from app.data.scripts.update_all_data.save_parsed_data import save_parsed_data |
Oops, something went wrong.