|
@@ -14,11 +14,11 @@ import gc
|
|
|
|
|
|
sys.path.append(os.getcwd())
|
|
sys.path.append(os.getcwd())
|
|
|
|
|
|
-from libraries.db_migration.ParseMapping import ParseMapping
|
|
|
|
-from libraries.db_migration.ParseJsonSchema import ParseJsonSchema
|
|
|
|
-from libraries.utils.ExceptionsHandler import ExceptionsHandler
|
|
|
|
-from libraries.utils.CleaningUtils import CleaningUtils
|
|
|
|
-from libraries.log import Log
|
|
|
|
|
|
+from cdplib.db_migration.ParseMapping import ParseMapping
|
|
|
|
+from cdplib.db_migration.ParseJsonSchema import ParseJsonSchema
|
|
|
|
+from cdplib.utils.ExceptionsHandler import ExceptionsHandler
|
|
|
|
+from cdplib.utils.CleaningUtils import CleaningUtils
|
|
|
|
+from cdplib.log import Log
|
|
|
|
|
|
class MigrationCleaning:
|
|
class MigrationCleaning:
|
|
'''
|
|
'''
|
|
@@ -58,7 +58,7 @@ class MigrationCleaning:
|
|
self._mapping_path = mapping_path
|
|
self._mapping_path = mapping_path
|
|
self._schema_paths = schema_paths
|
|
self._schema_paths = schema_paths
|
|
|
|
|
|
- from libraries.db_handlers.SQLHandler import SQLHandlerPool
|
|
|
|
|
|
+ from cdplib.db_handlers.SQLHandler import SQLHandlerPool
|
|
self._sql_db = SQLHandlerPool(20)
|
|
self._sql_db = SQLHandlerPool(20)
|
|
|
|
|
|
def _assert_dataframe_input(self, data: pd.DataFrame):
|
|
def _assert_dataframe_input(self, data: pd.DataFrame):
|
|
@@ -213,7 +213,7 @@ class MigrationCleaning:
|
|
reason: (str, pd.Series)) -> pd.DataFrame:
|
|
reason: (str, pd.Series)) -> pd.DataFrame:
|
|
'''
|
|
'''
|
|
'''
|
|
'''
|
|
- from libraries.db_handlers.SQLHandler import SQLHandler
|
|
|
|
|
|
+ from cdplib.db_handlers.SQLHandler import SQLHandler
|
|
|
|
|
|
assert((self._inconsist_report_table is not None) and
|
|
assert((self._inconsist_report_table is not None) and
|
|
(self._filter_index_columns is not None)),\
|
|
(self._filter_index_columns is not None)),\
|
|
@@ -517,7 +517,7 @@ if __name__ == "__main__":
|
|
|
|
|
|
# testing
|
|
# testing
|
|
|
|
|
|
- from libraries.db_handlers.SQLHandler import SQLHandler
|
|
|
|
|
|
+ from cdplib.db_handlers.SQLHandler import SQLHandler
|
|
|
|
|
|
mapping_path = os.path.join(".", "migration_mappings", "rs1_mapping.json")
|
|
mapping_path = os.path.join(".", "migration_mappings", "rs1_mapping.json")
|
|
|
|
|