Metadata-Version: 2.1
Name: accern-xyme
Version: 4.0.11
Summary: AccernXYME is a library for easily accessing XYME via python.
Home-page: https://github.com/Accern/accern-xyme
Author: Accern Corp.
Author-email: josua.krause@accern.com
License: MIT
Keywords: XYME AI machine learning client
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
License-File: LICENSE

Accern-XYME
===========

*accern\_xyme* is a python/typescript library for accessing XYME functionality.

|CircleCI|

.. |CircleCI| image:: https://circleci.com/gh/Accern/accern-xyme.svg?style=svg
   :target: https://circleci.com/gh/Accern/accern-xyme

Python Usage
------------

You can install *accern\_xyme* with pip:

.. code:: sh

    pip install --user accern-xyme

Import it in python via:

.. code:: python

    import accern_xyme

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

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

You will need python3.6 or later.


Typescript Developing
---------------------

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


