Metadata-Version: 2.1
Name: accern-xyme
Version: 0.0.2
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
Description: Accern-XYME
        ===========
        
        *accern\_xyme* is a python library for accessing XYME functionality.
        
        Usage
        -----
        
        You can install *accern\_xyme* with pip:
        
        .. code:: sh
        
            pip install --user accern-xyme
        
        Import it in python via:
        
        .. code:: python
        
            from accern_xyme import create_xyme_client
        
            client = accern_xyme.create_xyme_client(
                "https://xyme.accern.com/", "<USERNAME>", "<PASSWORD>")
            print(client.get_user_info())
        
        :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`.
        
        You will need python3.6 or later.
        
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
Provides-Extra: dev
Provides-Extra: test
