Python SDK for Ringer teliport
Installation
pip install ringer-ringer-teliport
Documentation
The SDK for ringer teliport provides a convenient way to interact with the API from your Python application.
Authentication
This API uses IP whitelist authentication. Ensure your server IP is whitelisted before making requests.
Basic Usage
from ringer_ringer_teliport import RingerTeliportClient
# Initialize the client
client = RingerTeliportClient(
base_path='https://api.ringer.tel/v1'
)
# Example API call
try:
response = client.some_endpoint()
print(response)
except Exception as e:
print(f"Error: {e}")