For Python Developers

Native Python client for accessing the UnDatasIO Platform

Python Client

Overview

The UnDatasIO Client for Python enables easy interaction with the UnDatasIO API, allowing developers to execute queries and mutations against the UnDatasIO platform.

Prerequisites

Before you begin, ensure you have the following:

  • Python 3.8 or later is installed on your system.

  • An active account on the UnDatasIO Platform with access to the API Settings page.

Installation

To install the UnDatasIO Client, use pip

pip install UnDatasIO

Configuration

Please obtain your token in the User Center.

from undatasio.undatasio import UnDatasIO

token = 'Your API token'
task_name = 'demo'

UnData = UnDatasIO(token=token, task_name=task_name)

Last updated