datarobot-early-access


Namedatarobot-early-access JSON
Version 3.10.0.2025.10.27.173756 PyPI version JSON
download
home_pagehttps://datarobot.com
SummaryThis client library is designed to support the DataRobot API.
upload_time2025-10-27 17:38:00
maintainerdatarobot
docs_urlNone
authordatarobot
requires_python>=3.7
licenseDataRobot Tool and Utility Agreement
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
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. **Do NOT use this package in production--you will expose yourself to risk of breaking changes and bugs.** For the most stable version, see the quarterly release on PyPI at https://pypi.org/project/datarobot/.

This package is released under the terms of the DataRobot Tool and Utility Agreement, which
can be found on our `Legal`_ page, along with our privacy policy and more.

Installation
=========================
Python >= 3.7 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'

Extra
=========================

datarobot_early_access has the following optional groups:

- `auth` (requires Python 3.9+): Provides an abstraction to handle OAuth2 authentication with DataRobot API (11.1+).
    This can be used in DataRobot Custom Applications and on its own.
- `auth-authlib` (requires Python 3.9+): OAuth2 authentication handling via Authlib.
    This can be used in DataRobot Custom Applications and on its own.
- `core` (requires Python 3.8+): Platform library functions to improve building with DataRobot.
    This can be used in DataRobot Custom Applications, Custom Models, and Agent Workflows.

You can install these optional groups by specifying them in the pip command, for example:

::

    $ pip install datarobot_early_access[auth]


Helpful links
=========================
- `API quickstart guide <https://docs.datarobot.com/en/docs/api/api-quickstart/index.html>`_
- `Code examples <https://docs.datarobot.com/en/docs/api/guide/python/index.html>`_
- `Common use cases <https://docs.datarobot.com/en/docs/api/guide/common-case/index.html>`_

Bug Reporting and Q&A
=========================
To report issues or ask questions, send email to `the team <api-maintainer@datarobot.com>`_.

.. _datarobot: https://datarobot.com
.. _documentation: https://datarobot-public-api-client.readthedocs-hosted.com/en/early-access/
.. _legal: https://www.datarobot.com/legal/

            

Raw data

            {
    "_id": null,
    "home_page": "https://datarobot.com",
    "name": "datarobot-early-access",
    "maintainer": "datarobot",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "api-maintainer@datarobot.com",
    "keywords": null,
    "author": "datarobot",
    "author_email": "api-maintainer@datarobot.com",
    "download_url": "https://files.pythonhosted.org/packages/f8/5e/613f6f1b24004be3d47b7b337bb93a07694d7ee3aa6def3a33bb9ac79cf7/datarobot_early_access-3.10.0.2025.10.27.173756.tar.gz",
    "platform": null,
    "description": "\nAbout datarobot_early_access\n============================\n.. image:: https://img.shields.io/pypi/v/datarobot_early_access.svg\n   :target: https://pypi.python.org/pypi/datarobot-early-access/\n.. image:: https://img.shields.io/pypi/pyversions/datarobot_early_access.svg\n.. image:: https://img.shields.io/pypi/status/datarobot_early_access.svg\n\nDataRobot is a client library for working with the `DataRobot`_ platform API. This package is the \"early access\" version of the client. **Do NOT use this package in production--you will expose yourself to risk of breaking changes and bugs.** For the most stable version, see the quarterly release on PyPI at https://pypi.org/project/datarobot/.\n\nThis package is released under the terms of the DataRobot Tool and Utility Agreement, which\ncan be found on our `Legal`_ page, along with our privacy policy and more.\n\nInstallation\n=========================\nPython >= 3.7 are supported.\nYou must have a datarobot account.\n\n::\n\n   $ pip install datarobot_early_access\n\nUsage\n=========================\nThe library will look for a config file `~/.config/datarobot/drconfig.yaml` by default.\nThis is an example of what that config file should look like.\n\n::\n\n   token: your_token\n   endpoint: https://app.datarobot.com/api/v2\n\nAlternatively a global client can be set in the code.\n\n::\n\n   import datarobot as dr\n   dr.Client(token='your_token', endpoint='https://app.datarobot.com/api/v2')\n\nAlternatively environment variables can be used.\n\n::\n\n   export DATAROBOT_API_TOKEN='your_token'\n   export DATAROBOT_ENDPOINT='https://app.datarobot.com/api/v2'\n\nExtra\n=========================\n\ndatarobot_early_access has the following optional groups:\n\n- `auth` (requires Python 3.9+): Provides an abstraction to handle OAuth2 authentication with DataRobot API (11.1+).\n    This can be used in DataRobot Custom Applications and on its own.\n- `auth-authlib` (requires Python 3.9+): OAuth2 authentication handling via Authlib.\n    This can be used in DataRobot Custom Applications and on its own.\n- `core` (requires Python 3.8+): Platform library functions to improve building with DataRobot.\n    This can be used in DataRobot Custom Applications, Custom Models, and Agent Workflows.\n\nYou can install these optional groups by specifying them in the pip command, for example:\n\n::\n\n    $ pip install datarobot_early_access[auth]\n\n\nHelpful links\n=========================\n- `API quickstart guide <https://docs.datarobot.com/en/docs/api/api-quickstart/index.html>`_\n- `Code examples <https://docs.datarobot.com/en/docs/api/guide/python/index.html>`_\n- `Common use cases <https://docs.datarobot.com/en/docs/api/guide/common-case/index.html>`_\n\nBug Reporting and Q&A\n=========================\nTo report issues or ask questions, send email to `the team <api-maintainer@datarobot.com>`_.\n\n.. _datarobot: https://datarobot.com\n.. _documentation: https://datarobot-public-api-client.readthedocs-hosted.com/en/early-access/\n.. _legal: https://www.datarobot.com/legal/\n",
    "bugtrack_url": null,
    "license": "DataRobot Tool and Utility Agreement",
    "summary": "This client library is designed to support the DataRobot API.",
    "version": "3.10.0.2025.10.27.173756",
    "project_urls": {
        "Changelog": "https://datarobot-public-api-client.readthedocs-hosted.com/en/early-access/CHANGES.html",
        "Documentation": "https://datarobot-public-api-client.readthedocs-hosted.com/en/early-access/",
        "Homepage": "https://datarobot.com"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f72d0b11f51b06353f86872a2aae21295544ca9208f79429f7dbb307804205a2",
                "md5": "ba48673c9b44b8c76c5f5fd6303f9bda",
                "sha256": "8cd68df27170174496ebd65dd66b1cd3994c9732a93329c391997c6ec9523b65"
            },
            "downloads": -1,
            "filename": "datarobot_early_access-3.10.0.2025.10.27.173756-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ba48673c9b44b8c76c5f5fd6303f9bda",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 833513,
            "upload_time": "2025-10-27T17:37:58",
            "upload_time_iso_8601": "2025-10-27T17:37:58.899737Z",
            "url": "https://files.pythonhosted.org/packages/f7/2d/0b11f51b06353f86872a2aae21295544ca9208f79429f7dbb307804205a2/datarobot_early_access-3.10.0.2025.10.27.173756-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f85e613f6f1b24004be3d47b7b337bb93a07694d7ee3aa6def3a33bb9ac79cf7",
                "md5": "e328d62f14575d440c56f6a94fe1249e",
                "sha256": "1566ac20b63284bc6fc9352e1b7cffab79ef7fccdff0162e97a610fb3d4e5888"
            },
            "downloads": -1,
            "filename": "datarobot_early_access-3.10.0.2025.10.27.173756.tar.gz",
            "has_sig": false,
            "md5_digest": "e328d62f14575d440c56f6a94fe1249e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 770563,
            "upload_time": "2025-10-27T17:38:00",
            "upload_time_iso_8601": "2025-10-27T17:38:00.589348Z",
            "url": "https://files.pythonhosted.org/packages/f8/5e/613f6f1b24004be3d47b7b337bb93a07694d7ee3aa6def3a33bb9ac79cf7/datarobot_early_access-3.10.0.2025.10.27.173756.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-27 17:38:00",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "datarobot-early-access"
}
        
Elapsed time: 2.20978s