AccernXYME is a library for easily accessing XYME via python.


Keywords
XYME, AI, machine, learning, client
License
MIT
Install
pip install accern-xyme==0.0.10

Documentation

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.