Metadata-Version: 1.1
Name: datarobot-early-access
Version: 2.26.0.2021.9.27
Summary: This client library is designed to support the DataRobot API.
Home-page: http://datarobot.com
Author: datarobot
Author-email: info@datarobot.com
License: Apache Software License
Description: 
        About datarobot_early_access
        ============================
        .. image:: https://img.shields.io/pypi/v/datarobot_early_access.svg
           :target: https://pypi.python.org/pypi/datarobot-early-access/
        .. image:: https://img.shields.io/pypi/pyversions/datarobot_early_access.svg
        .. image:: https://img.shields.io/pypi/status/datarobot_early_access.svg
        
        DataRobot is a client library for working with the `DataRobot`_ platform API. This package is the "early access" version of the client. For the most stable version, see the quarterly release on PyPI at https://pypi.org/project/datarobot/.
        
        Installation
        =========================
        Python 3.4 and higher are supported.
        You must have a datarobot account.
        
        ::
        
           $ pip install datarobot_early_access
        
        Usage
        =========================
        The library will look for a config file `~/.config/datarobot/drconfig.yaml` by default.
        This is an example of what that config file should look like.
        
        ::
        
           token: your_token
           endpoint: https://app.datarobot.com/api/v2
        
        Alternatively a global client can be set in the code.
        
        ::
        
           import datarobot as dr
           dr.Client(token='your_token', endpoint='https://app.datarobot.com/api/v2')
        
        Alternatively environment variables can be used.
        
        ::
        
           export DATAROBOT_API_TOKEN='your_token'
           export DATAROBOT_ENDPOINT='https://app.datarobot.com/api/v2'
        
        See `documentation`_ for example usage after configuring.
        
        Tests
        =========================
        ::
        
           $ py.test
        
        .. _datarobot: http://datarobot.com
        .. _documentation: https://datarobot-public-api-client.readthedocs-hosted.com/en/early-access/
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
