Registry / aws / tencentcloud-sdk-python-sslpod

tencentcloud-sdk-python-sslpod

JSON →
library3.0.1459pypypi✓ verified 84d ago

Official Tencent Cloud SDK for the SSL Pod service, providing Python bindings to manage SSL certificate monitoring, validation, and reporting. Current version 3.0.1459, frequent releases tracking the cloud API.

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

SslpodClient
from tencentcloud.sslpod.v20190605 import sslpod_client
from tencentcloud.sslpod import SslpodClient
The API version is part of the module path (v20190605).

Authenticate and call DescribeDashboard as a quick health check.

from tencentcloud.common import credential from tencentcloud.sslpod.v20190605 import sslpod_client from tencentcloud.sslpod.v20190605 import models as sslpod_models try: cred = credential.Credential( secret_id=os.environ.get('TENCENTCLOUD_SECRET_ID', ''), secret_key=os.environ.get('TENCENTCLOUD_SECRET_KEY', '') ) client = sslpod_client.SslpodClient(cred, "ap-guangzhou") req = sslpod_models.DescribeDashboardRequest() resp = client.DescribeDashboard(req) print(resp.to_json_string()) except Exception as e: print("Error:", e)
Debug
Known issues
breakingModule paths changed after v3.0.100: version number now appears in the import path (e.g., v20190605). Old imports without version number will break.
fix
Update imports to include the version segment, e.g., from tencentcloud.sslpod.v20190605 import ...
affects: >=3.0.100
gotchaThe SDK auto-detects region from environment variable TENCENTCLOUD_REGION, but if not set and not passed to the client constructor, it defaults to ap-guangzhou. Many users forget to set region and get unexpected results.
fix
Always pass the region parameter to SslpodClient(cred, region='ap-guangzhou').
affects: all
deprecatedThe old credential pattern using SecretId/SecretKey strings directly in client init is deprecated. Use the Credential class from tencentcloud.common instead.
fix
Replace client = SslpodClient(secret_id, secret_key, region) with client = SslpodClient(credential.Credential(secret_id, secret_key), region).
affects: >=3.0.100
Errors
Common errors & fixes
ModuleNotFoundError: No module named 'tencentcloud.sslpod'
The SDK is split into per-service packages; the base package 'tencentcloud-sdk-python' does not include sslpod.
fix
Install the correct package: pip install tencentcloud-sdk-python-sslpod
ImportError: cannot import name 'SslpodClient' from 'tencentcloud.sslpod'
The import path includes the API version; SslpodClient is located under the versioned module.
fix
Use: from tencentcloud.sslpod.v20190605 import sslpod_client
Upgrade
Version history
3.0.1459latest on PyPI · released Sep 15, 2025
Audit
Dependencies
tencentcloud-sdk-python-commonrequiredRequired for shared authentication and client base classes
Agent activity
34 hits · last 30 days
node
32
OpenAI (training)
1
Resources