Bez popisu

tanja 0d38a4ed14 merged with master: resolved merge conflicts před 3 roky
cdplib 0d38a4ed14 merged with master: resolved merge conflicts před 3 roky
hooks 7c3e6b725b added * před 3 roky
tests 7c3e6b725b added * před 3 roky
.gitignore 7c3e6b725b added * před 3 roky
Pipfile 0d38a4ed14 merged with master: resolved merge conflicts před 3 roky
README.md 4109ebff20 all changes před 3 roky
classes.png 7c3e6b725b added * před 3 roky
packages.png 7c3e6b725b added * před 3 roky
setup.py 7c3e6b725b added * před 3 roky

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