ascend-io-sdk


Nameascend-io-sdk JSON
Version 0.2.64 PyPI version JSON
download
home_pagehttps://www.ascend.io
SummaryThe Ascend.io SDK for Python
upload_time2024-03-15 23:26:40
maintainerAscend.io Engineering
docs_urlNone
authorAscend.io Engineering
requires_python>=3.7,<4.0
licenseApache-2.0
keywords ascend pipeline data automation platform
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. raw::html
    <hidden>test</hidde>

==============================
The Ascend.io Python SDK
==============================

This package contains the `Ascend Python SDK <https://developer.ascend.io/docs/python-sdk>`_. This SDK is used to script the management of the
`Ascend.io <https://www.ascend.io>`_ Data Automation Platform. The SDK can be used to create your own customizations of the
platform configuration, integrate with   CI/CD or other tools, as well as fully automate your environment.

* **Automation.** Integrate Ascend with any combination of workflow and/or CI/CD tools your organization uses on a daily basis.
* **Transparency.** Ascend deploys within your Cloud tenant (GCP, AWS, Azure) so you can see everything the platform is doing.
* **Control.** Manage your Ascend Platform, build dataflows, extract metadata, and more in a completely programmatic way

---------------
Get Started
---------------
You will need access to an Ascend.io installation. Developers can `sign up for a free trial <https://www.ascend.io/signup/>`_.
If you are already an Ascend customer, have your administrator add you to the platform.

Once you have access to the Platform, `create your developer API Access Keys <https://developer.ascend.io/docs/developer-keys>`_
and `configure your local authentication file <https://developer.ascend.io/docs/python-sdk#authorization>`_. Remember to change
the word *trial* in your local authentication file to the name of your Ascend.io instance.


Install the python library using `pip <https://pip.pypa.io/en/latest/>`_::

    $ pip3 install ascend-io-sdk

Start writing your automations with the `Python Client <https://developer.ascend.io/docs/python-sdk-client-ref>`_.

------------------
Run the Examples
------------------
If running some sample code works for you, try out the Ascend Python SDK by listing the dataflows
within your Ascend instance::

    from ascend.sdk.client import Client
    from tabulate import tabulate

    hostname = 'my-host-name'
    client = Client(hostname)
    services = []
    for ds in client.list_data_services().data:
        services.append([ds.id, ds.name, ds.created_at, ds.updated_at])

    print(tabulate(sorted(services, key=lambda x: x[1]), headers=["id", "name", "created at"]))

We release updates to the SDK all the time. If some features are missing, you get stuck, or you find
something that you don't think is right, please let us know. We're here to make the developer experience
as easy and enjoyable as possible. We know that fabulous Developer Relations is key!

---------------
Read the Docs
---------------
* `Ascend.io Python SDK Documentation <https://developer.ascend.io/docs/python-sdk>`_
* `Ascend Developer Hub <https://developer.ascend.io>`_
* `Ascend.io <https://www.ascend.io>`_



            

Raw data

            {
    "_id": null,
    "home_page": "https://www.ascend.io",
    "name": "ascend-io-sdk",
    "maintainer": "Ascend.io Engineering",
    "docs_url": null,
    "requires_python": ">=3.7,<4.0",
    "maintainer_email": "support@ascend.io",
    "keywords": "ascend,pipeline,data,automation,platform",
    "author": "Ascend.io Engineering",
    "author_email": "support@ascend.io",
    "download_url": "https://files.pythonhosted.org/packages/a4/d4/5221b7033baa4202fa1f181fc40e4e47f45de1ee503be9c96ccd56a3e18c/ascend-io-sdk-0.2.64.tar.gz",
    "platform": null,
    "description": ".. raw::html\n    <hidden>test</hidde>\n\n==============================\nThe Ascend.io Python SDK\n==============================\n\nThis package contains the `Ascend Python SDK <https://developer.ascend.io/docs/python-sdk>`_. This SDK is used to script the management of the\n`Ascend.io <https://www.ascend.io>`_ Data Automation Platform. The SDK can be used to create your own customizations of the\nplatform configuration, integrate with   CI/CD or other tools, as well as fully automate your environment.\n\n* **Automation.** Integrate Ascend with any combination of workflow and/or CI/CD tools your organization uses on a daily basis.\n* **Transparency.** Ascend deploys within your Cloud tenant (GCP, AWS, Azure) so you can see everything the platform is doing.\n* **Control.** Manage your Ascend Platform, build dataflows, extract metadata, and more in a completely programmatic way\n\n---------------\nGet Started\n---------------\nYou will need access to an Ascend.io installation. Developers can `sign up for a free trial <https://www.ascend.io/signup/>`_.\nIf you are already an Ascend customer, have your administrator add you to the platform.\n\nOnce you have access to the Platform, `create your developer API Access Keys <https://developer.ascend.io/docs/developer-keys>`_\nand `configure your local authentication file <https://developer.ascend.io/docs/python-sdk#authorization>`_. Remember to change\nthe word *trial* in your local authentication file to the name of your Ascend.io instance.\n\n\nInstall the python library using `pip <https://pip.pypa.io/en/latest/>`_::\n\n    $ pip3 install ascend-io-sdk\n\nStart writing your automations with the `Python Client <https://developer.ascend.io/docs/python-sdk-client-ref>`_.\n\n------------------\nRun the Examples\n------------------\nIf running some sample code works for you, try out the Ascend Python SDK by listing the dataflows\nwithin your Ascend instance::\n\n    from ascend.sdk.client import Client\n    from tabulate import tabulate\n\n    hostname = 'my-host-name'\n    client = Client(hostname)\n    services = []\n    for ds in client.list_data_services().data:\n        services.append([ds.id, ds.name, ds.created_at, ds.updated_at])\n\n    print(tabulate(sorted(services, key=lambda x: x[1]), headers=[\"id\", \"name\", \"created at\"]))\n\nWe release updates to the SDK all the time. If some features are missing, you get stuck, or you find\nsomething that you don't think is right, please let us know. We're here to make the developer experience\nas easy and enjoyable as possible. We know that fabulous Developer Relations is key!\n\n---------------\nRead the Docs\n---------------\n* `Ascend.io Python SDK Documentation <https://developer.ascend.io/docs/python-sdk>`_\n* `Ascend Developer Hub <https://developer.ascend.io>`_\n* `Ascend.io <https://www.ascend.io>`_\n\n\n",
    "bugtrack_url": null,
    "license": "Apache-2.0",
    "summary": "The Ascend.io SDK for Python",
    "version": "0.2.64",
    "project_urls": {
        "Ascend Developer": "https://developer.ascend.io",
        "Ascend.io": "https://www.ascend.io",
        "Documentation": "https://developer.ascend.io/docs/python-sdk",
        "Homepage": "https://www.ascend.io"
    },
    "split_keywords": [
        "ascend",
        "pipeline",
        "data",
        "automation",
        "platform"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bfee97d3105ee2028e43beddc88775a53f0b0bd4fccab877e2eaa9c6cd4e4241",
                "md5": "117346e757d76c23d6bbb465738514cb",
                "sha256": "85df4780fcffe19e28ae25ade64ec0419e43573b2eccdf9bf5984aa2b20fd534"
            },
            "downloads": -1,
            "filename": "ascend_io_sdk-0.2.64-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "117346e757d76c23d6bbb465738514cb",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7,<4.0",
            "size": 380800,
            "upload_time": "2024-03-15T23:26:37",
            "upload_time_iso_8601": "2024-03-15T23:26:37.383989Z",
            "url": "https://files.pythonhosted.org/packages/bf/ee/97d3105ee2028e43beddc88775a53f0b0bd4fccab877e2eaa9c6cd4e4241/ascend_io_sdk-0.2.64-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a4d45221b7033baa4202fa1f181fc40e4e47f45de1ee503be9c96ccd56a3e18c",
                "md5": "788836f9f37ef880eac49f045fdfa83c",
                "sha256": "6374c7e3280967b1ca46d28c250175c1f9e34830580ec861bac8db1057f4c980"
            },
            "downloads": -1,
            "filename": "ascend-io-sdk-0.2.64.tar.gz",
            "has_sig": false,
            "md5_digest": "788836f9f37ef880eac49f045fdfa83c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7,<4.0",
            "size": 350259,
            "upload_time": "2024-03-15T23:26:40",
            "upload_time_iso_8601": "2024-03-15T23:26:40.004714Z",
            "url": "https://files.pythonhosted.org/packages/a4/d4/5221b7033baa4202fa1f181fc40e4e47f45de1ee503be9c96ccd56a3e18c/ascend-io-sdk-0.2.64.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-15 23:26:40",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "ascend-io-sdk"
}
        
Elapsed time: 0.20466s