Python SDK for the VMOS Cloud OpenAPI.
pip install mtm-vmossdkfrom mtm_vmos_sdk import VMOSClient
client = VMOSClient(
access_key="your-access-key",
secret_key="your-secret-key",
api_base="https://api.vmoscloud.com",
api_host="api.vmoscloud.com",
)
print(client.infos(page=1, rows=20))Use VMOSClient for the high-level SDK wrapper, or VMOSAuthConfig plus
SignedVMOSApiClient when you need direct low-level API access.
Regenerate the embedded OpenAPI package with:
bash scripts/generate_client.shmtmai is one consumer of this package, but this SDK is designed to be used as
an independent Python library.