Няма описание

tanja f47d4ab011 refactored DataFrameToCollection: now more readable преди 4 години
cdplib f47d4ab011 refactored DataFrameToCollection: now more readable преди 4 години
hooks ee2def1fea Silenced exception for dispose_engine преди 4 години
.gitignore 9c3bf2cef9 Add an ignore file преди 4 години
Pipfile 36700509ff trying to speedup convert mongo to dataframe преди 4 години
Pipfile.lock 26c0dcbb95 Made flatten data more flexible by creating a method for labeling list indexes which can be overwritten by other users преди 4 години
README.md 48552de24b added information how to install a package from a branch преди 4 години
classes.png 7fbd2c2b6c update int преди 4 години
packages.png 7fbd2c2b6c update int преди 4 години
setup.py b1851d563e upate setup.py преди 4 години

README.md

Install the package

Install cdplib via pipenv: pipenv install -e git+https://readonly:readonly@intra.acdp.at/gogs/tanja/cdplib.git#egg=cdplib

Install via Pipfile

Adding new Features/Folders/Packages

How to set up a new Package:

  • Copy folder to respository into cdplib folder
  • Add the Package/Folder name to cdplib/init.py
    • Open it and add all python packages which schould be included
    • Package name is Preprocessing the line to add would be: from .Preprocessing import *
  • Add a cdplib/package_name/init.py file inside the new package folder
    • Open it and add all python skript which schould be included
    • Script name is FeatureSelection.py the line to add would be: from .FeatureSelection import *

Import into Script

from cdplib.db_migration import DataFrameToCollection

Update lib locally or in Docker

  • If changes are made run pipenv update in the wokring directory