The Ascend.io SDK for Python
Project description
This package contains the Ascend Python SDK. This SDK is used to script the management of the 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. 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 and configure your local authentication file. 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:
$ pip3 install ascend-io-sdk
Start writing your automations with the Python Client.
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
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for ascend_io_sdk-0.2.65a0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2fee1a18b2fb6711cb410929a6a51813606037f78e23c49f91d0567e02819f83 |
|
MD5 | e6fe9a7ef94b2379af7c28b7afb7aee9 |
|
BLAKE2b-256 | 64507c6b263b7727dbb7860f1b03c54c197dfcd29c16dc2a363623a98c56ae27 |