tsteuer 5 éve
szülő
commit
7fbd2c2b6c

+ 38 - 0
Pipfile

@@ -0,0 +1,38 @@
+[[source]]
+name = "pypi"
+url = "https://pypi.org/simple"
+verify_ssl = true
+
+[dev-packages]
+
+[packages]
+# cdplib = {editable = true,git = "https://readonly:readonly@intra.acdp.at/gogs/tanja/cdplib.git"}
+pycodestyle = "*"
+ipykernel = "*"
+spyder-kernels = "==0.*"
+cloudpickle = "*"
+openpyxl = "*"
+setuptools = "*"
+scipy = "*"
+matplotlib = "*"
+tsfresh = "*"
+hyperopt = "*"
+xgboost = "*"
+scikit-learn = "*"
+pandas = "!=0.24.0"
+pandas-compat = "*"
+xmltodict = "*"
+sqlalchemy = "*"
+sqlparse = "*"
+pymysql = "*"
+xlrd = "*"
+pymongo = "*"
+jsonref = "*"
+faker = "*"
+xeger = "*"
+simplejson = "*"
+mysql = "*"
+sqlalchemy-utils = "*"
+
+[requires]
+python_version = "3"

+ 3 - 1
cdplib/__init__.py

@@ -1,2 +1,4 @@
 from .db_handlers import *
-from .db_migration import *
+from .db_migration import *
+from .data_cleaning import *
+from .data_hyperopt import *

+ 1 - 0
cdplib/data_cleaning/__init__.py

@@ -0,0 +1 @@
+from .DataCleaningUtils import *

+ 2 - 1
cdplib/db_migration/__init__.py

@@ -3,4 +3,5 @@ from .DataFrameToCollection import *
 from .MigrationCleaning import *
 from .ParseDbSchema import *
 from .ParseJsonSchema import *
-from .ParseMapping import *
+from .ParseMapping import *
+from .FlattenData import *

+ 1 - 0
cdplib/hyperopt/__init__.py

@@ -0,0 +1 @@
+from .HyperoptPipelineSelection import *

BIN
classes.png


BIN
packages.png


+ 1 - 5
setup.py

@@ -1,11 +1,7 @@
 from setuptools import setup,find_packages
 
 INSTALL_REQUIRES = [
-    'numpy',
-    'simplejson',
-    'jsonref',
-    'pymongo',
-    'pandas'
+    'numpy'
 ]