Metadata-Version: 2.1
Name: accern-xyme
Version: 0.1.1
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: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: numpy (>=1.17.3)
Requires-Dist: pandas (>=0.25.3)
Requires-Dist: quick-server (>=0.7.8)
Requires-Dist: requests (>=2.22.0)
Requires-Dist: RestrictedPython (>=5.0)
Requires-Dist: typing-extensions (>=3.7.4.1)
Provides-Extra: dev
Provides-Extra: test

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

*accern\_xyme* is a python 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

Usage
-----

For XYME legacy information use the latest version before
`v0.1.0 <https://github.com/Accern/accern-xyme/tree/legacy>`_

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("https://xyme.accern.com/", "<USERNAME>", "<PASSWORD>")
    print(xyme.get_pipelines())

:code:`<USERNAME>` and :code:`<PASSWORD>` are the login credentials for XYME.
The values can also be set to :code:`None` in which case the values must
be set in the environment variables :code:`ACCERN_USER`
and :code:`ACCERN_PASSWORD`. A login token can also be provided.

You will need python3.6 or later.


