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
-
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. -
Use the following command to install the AskTable Python SDK:
pip install asktable
-
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.