English | 中文
Welcome to Volcengine SDK for Python. This document explains how to obtain and use the SDK.
Make sure the service you want to access is enabled. Go to the Volcengine Console, select the service from the left navigation (or search it from the top bar), and complete the activation process in the service console.
Access Key is the credential used to access Volcengine services. It consists of Access Key ID (AK) and Secret Access Key (SK).
Log in to the Volcengine Console, then go to IAM -> Access Keys to create and manage your Access Keys. For more information, see the Access Key documentation.
Python version must be 3.7 or later.
Install the SDK via pip:
pip install --user volcengineIf volcengine is already installed, upgrade it with:
pip install --upgrade volcengineVolcengine SDK for Python supports the following credential loading methods.
Note: Replace Your AK and Your SK in the code with your actual AK and SK.
Method 1: Set AK/SK on the client (recommended)
iam_service = IamService()
iam_service.set_ak('Your AK')
iam_service.set_sk('Your SK')Method 2: Load AK/SK from environment variables
VOLC_ACCESSKEY="Your AK"
VOLC_SECRETKEY="Your SK"Method 3: Load AK/SK from a file under HOME
Add the following content to ~/.volc/config:
{
"ak": "Your AK",
"sk": "Your SK"
}