Skip to content

Accern/accern-xyme

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Accern-XYME

accern_xyme is a python/typescript library for accessing XYME functionality.

GHAction

Python Usage

You can install accern_xyme with pip:

pip install --user accern-xyme

Import it in python via:

import accern_xyme

xyme = accern_xyme.create_xyme_client(
    "<URL>",
    token="<TOKEN>",
    namespace="default")
print(xyme.get_dags())

<URL> and <TOKEN> are the login credentials for XYME.

You will need python3.6 or later.

Typescript Developing

You can install dependency with yarn. Run yarn _postinstall to configure husky pre-commit hooks for your local environment.