Skip to main content

Python SDK Installation Guide

Introduction

The AskTable Python SDK allows you to interact with the AskTable API through simple Python code. By using the Python SDK, you can easily query data sources, manage roles and policies, and perform other administrative tasks.

Installation

Additional References

Environment Requirements

  • Python Version: 3.9 or higher
  • Dependency Library: requests

Installation Steps

  1. Ensure that you have installed pip (the package management tool for Python). If it is not installed, refer to the official documentation for installation instructions.

  2. Use the following command to install the AskTable Python SDK:

    pip install asktable
  3. Verify that the installation was successful:

    python -c "import asktable; print(asktable.__version__)" # Outputs version number

    If installed correctly, the version number of the SDK will be output.