Registry / aws / tencentcloud-sdk-python-tiw

tencentcloud-sdk-python-tiw

JSON →
library3.1.59pypypi✓ verified 83d ago

The Tencent Cloud Tiw SDK for Python provides access to Tencent Interactive Whiteboard (TIW) services. Version 3.1.59 is the latest stable release. The package is part of the larger tencentcloud-sdk-python ecosystem and follows the same release cadence as other Tencent Cloud SDK modules.

pip install tencentcloud-sdk-python-tiw
INSTALL
IMPORT
SIG · TENCENTCLOUD-SDK-P
T
tencentcloud-sdk-python-tiw
awspythonv3.1.59
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

TiwClient
from tencentcloud.tiw.v20190919 import tiw_client
from tencentcloud.tiw import TiwClient
The old import path was flat; now you must specify the API version in the module path.

Initialize the Tiw client and call DescribeWhiteboardPush as an example.

import os from tencentcloud.common import credential from tencentcloud.common.exception.tencent_cloud_sdk_exception import TencentCloudSDKException from tencentcloud.tiw.v20190919 import tiw_client, models try: cred = credential.Credential( os.environ.get('TENCENTCLOUD_SECRET_ID', ''), os.environ.get('TENCENTCLOUD_SECRET_KEY', '') ) client = tiw_client.TiwClient(cred, 'ap-guangzhou') req = models.DescribeWhiteboardPushRequest() req.SdkAppId = 'your_sdkappid' req.TaskId = 'your_task_id' resp = client.DescribeWhiteboardPush(req) print(resp.to_json_string()) except TencentCloudSDKException as err: print(err)
Debug
Known issues
breakingThe import path changed between SDK v2 and v3. In v2, you could import directly from tencentcloud.tiw; in v3, you must include the version subpackage (v20190919).
fix
Use from tencentcloud.tiw.v20190919 import tiw_client, models
affects: >=3.0.0
deprecatedThe DescribeWhiteboardPushRequest and similar request objects are deprecated in favor of new request models in later API versions (e.g., v20200903?). Check the latest API documentation.
fix
Use the latest request models from the appropriate version subpackage.
affects: >=3.1.50
gotchaRegion selection matters: the Tiw API may not be available in all regions. Using an unsupported region will cause a client error.
fix
Verify supported regions in the Tencent Cloud documentation; typically 'ap-guangzhou', 'ap-shanghai', etc.
affects: all
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'tencentcloud'
The base tencentcloud-sdk-python-common package is not installed.
fix
pip install tencentcloud-sdk-python-common
tencentcloud.common.exception.TencentCloudSDKException: [TencentCloudSDKException] code: UnsupportedOperation, message: The requested API version is not supported
The API version (e.g., v20190919) is not supported for the specific TIW operation.
fix
Update to the latest API version: check the Tencent Cloud documentation and adjust the import path accordingly (e.g., v20200903).
Upgrade
Version history
3.1.59latest on PyPI · released Mar 18, 2026
Audit
Dependencies
tencentcloud-sdk-python-commonrequiredRequired for all Tencent Cloud SDK operations (authentication, HTTP client, etc.)
Agent activity
45 hits · last 30 days
node
40
OpenAI (training)
1
Resources