Registry / aws / tencentcloud-sdk-python-tic

tencentcloud-sdk-python-tic

JSON →
library3.0.1416pypypi✓ verified 84d ago

Official Tencent Cloud SDK for the TIC (Tencent Infrastructure as Code) service. Version 3.0.1416 provides client classes for managing stacks and versions. Part of the tencentcloud-sdk-python family, updated frequently alongside the service API.

pip install tencentcloud-sdk-python-tic
INSTALL
IMPORT
SIG · TENCENTCLOUD-SDK-P
T
tencentcloud-sdk-python-tic
awspythonv3.0.1416
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.

TicClient
from tencentcloud.tic.v20201117 import tic_client
import tencentcloud-sdk-python-tic
Hyphenated package names cannot be imported directly; use correct module path
models
from tencentcloud.tic.v20201117 import models

Quickstart: Describe TIC stacks using SDK client.

from tencentcloud.common import credential from tencentcloud.tic.v20201117 import tic_client, models cred = credential.Credential( os.environ.get('TENCENTCLOUD_SECRET_ID', ''), os.environ.get('TENCENTCLOUD_SECRET_KEY', '') ) client = tic_client.TicClient(cred, "ap-guangzhou") req = models.DescribeStacksRequest() resp = client.DescribeStacks(req) print(resp)
Debug
Known issues
gotchaImport path uses versioned subpackage (v20201117) – verify the API version matches your service region.
fix
Check latest API version in official docs; import accordingly.
affects: all
gotchaCredentials must be set via environment variables or Credential object; missing credentials causes authentication failure with vague error.
fix
Set TENCENTCLOUD_SECRET_ID and TENCENTCLOUD_SECRET_KEY, or pass Credential object explicitly.
affects: all
deprecatedOlder SDK used 'tic_v20201117' style imports; now prefer 'tic.v20201117' subpackage without underscore.
fix
Update import path to use dots and remove underscores.
affects: <=3.0.1000
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'tencentcloud-sdk-python-tic'
Trying to import the distribution name directly
fix
Use correct module path: from tencentcloud.tic.v20201117 import tic_client
AttributeError: module 'tencentcloud.tic' has no attribute 'v20201117'
Wrong API version or missing subpackage
fix
Install the correct version: pip install tencentcloud-sdk-python-tic==3.0.1416, then import from tencentcloud.tic.v20201117.
Upgrade
Version history
3.0.1416latest on PyPI · released Jul 5, 2025
Audit
Dependencies
tencentcloud-sdk-python-commonrequiredCore dependency with credential and HTTP logic
Agent activity
23 hits · last 30 days
node
20
Resources
tencentcloud-sdk-python-tic — pip install tencentcloud-sdk-python-tic · libregistry