tsteuer hace 5 años
padre
commit
58012fee63
Se han modificado 3 ficheros con 9 adiciones y 2 borrados
  1. 2 0
      cdplib/__init__.py
  2. 2 1
      cdplib/db_handlers/__init__.py
  3. 5 1
      cdplib/db_migration/__init__.py

+ 2 - 0
cdplib/__init__.py

@@ -0,0 +1,2 @@
+from .cdplib import db_handler
+from .cdplib import db_migration

+ 2 - 1
cdplib/db_handlers/__init__.py

@@ -1 +1,2 @@
-from .db_handlers import *
+from .MongodbHandler import *
+from .SQLHandler import *

+ 5 - 1
cdplib/db_migration/__init__.py

@@ -1,2 +1,6 @@
 from .Test import *
-from .DataFrameToCollection import *
+from .DataFrameToCollection import *
+from .MigrationCleaning import *
+from .ParseDbSchema import *
+from .ParseJsonSchema import *
+from .ParseMapping import *