Skip to main content

No project description provided

Project description

Wavix Python SDK

fern shield pypi

The official Wavix Python SDK provides programmatic access to the Wavix APIs. Use it to add messaging, voice, and account management capabilities to your application.

Use the SDK to:

  • Send and receive SMS and MMS messages.
  • Place and programmatically control calls.
  • Search for, buy, and manage phone numbers.
  • Validate phone numbers.
  • Manage SIP trunks.
  • Retrieve call detail records (CDRs).

Table of contents

Installation

pip install wavix-python-sdk

Requirements: Python 3.10 or later.

Authentication

Create an API key in the Wavix portal. Store the key in an environment variable and pass it to the client.

export WAVIX_API_KEY="your-api-key"
import os

from wavix import Wavix

client = Wavix(token=os.environ["WAVIX_API_KEY"])

[!CAUTION] Don't commit API keys or tokens to source control. In production, store credentials in environment variables or a secrets manager.

Quickstart

Create a client and send an SMS message:

from wavix import Wavix, MessageBody

client = Wavix(
    token="<token>",
)

client.sms_and_mms.messages.send(
    from_="Wavix",
    to="+447537151866",
    message_body=MessageBody(
        text="Hi there, this is a message from Wavix",
        media=None,
    ),
    callback_url="https://you-site.com/webhook",
    validity=3600,
    tag="Fall sale",
)

Async client

Use AsyncWavix to make nonblocking API calls. If you provide an httpx client through the httpx_client parameter, use httpx.AsyncClient with AsyncWavix. Don't use httpx.Client with the async client.

import asyncio

from wavix import AsyncWavix, MessageBody

client = AsyncWavix(
    token="<token>",
)


async def main() -> None:
    await client.sms_and_mms.messages.send(
        from_="Wavix",
        to="+447537151866",
        message_body=MessageBody(
            text="Hi there, this is a message from Wavix",
            media=None,
        ),
        callback_url="https://you-site.com/webhook",
        validity=3600,
        tag="Fall sale",
    )


asyncio.run(main())

Error handling

When the API returns a 4xx or 5xx status code, the SDK raises a subclass of ApiError. Use the error properties to inspect the status code and response body:

from wavix.core.api_error import ApiError

try:
    client.sms_and_mms.messages.send(...)
except ApiError as e:
    print(e.status_code)
    print(e.body)

Handle errors that aren't instances of ApiError separately, or raise them again so that your application doesn't ignore unexpected failures.

Pagination

List operations use automatic page-number pagination. The SDK requests additional pages as you iterate through the results.

The Wavix APIs support these pagination parameters:

  • page: Specifies the page to retrieve.
  • per_page: Specifies the number of items per page. The default is 25. The minimum is 1, and the maximum is 100.

Rate limits and retries

Rate limits vary by endpoint. When a request exceeds an endpoint's rate limit, the Wavix API returns an HTTP 429 Too Many Requests response.

The SDK can retry 429 responses as described in Retries. Configure retries according to your application's traffic patterns and latency requirements.

Retries

The SDK automatically retries eligible requests by using exponential backoff. By default, the SDK makes up to two retry attempts.

The SDK retries requests that return one of these status codes:

These status codes aren't configurable.

Use max_retries to override the retry limit for an individual request:

client.sms_and_mms.messages.send(..., request_options={
    "max_retries": 1
})

[!IMPORTANT] A retry can repeat an operation if the server processes the original request but the client doesn't receive the response. Before you retry an operation that sends a message, places a call, or changes a resource, confirm that the operation can be repeated safely.

Idempotency

The Wavix APIs don't support idempotency keys. A repeated request can repeat the operation, including sending a message, placing a call, or changing a resource.

Before you retry a request that changes data or starts an operation, check whether the original request succeeded. When duplicate operations could affect customers or incur charges, track request state in your application and prevent the same operation from being submitted more than once.

Advanced

Access raw response data

Use .with_raw_response to access the status code, headers, and underlying response object. The property returns a raw client whose responses provide .headers, .status_code, and .data attributes:

from wavix import Wavix

client = Wavix(...)
response = client.sms_and_mms.messages.with_raw_response.send(...)
print(response.headers)  # access the response headers
print(response.status_code)  # access the response status code
print(response.data)  # access the underlying object

Timeouts

The default request timeout is 60 seconds. Set a timeout on the client, or override it for an individual request:

from wavix import Wavix

client = Wavix(..., timeout=20.0)

# Override timeout for a specific method
client.sms_and_mms.messages.send(..., request_options={
    "timeout_in_seconds": 1
})

Custom HTTP client

Provide a custom httpx client to configure network behavior such as proxies and transports:

import httpx
from wavix import Wavix

client = Wavix(
    ...,
    httpx_client=httpx.Client(
        proxy="http://my.test.proxy.example.com",
        transport=httpx.HTTPTransport(local_address="0.0.0.0"),
    ),
)

SDK and API compatibility

Each SDK release supports the current version of the Wavix APIs available when that SDK version is released. Update the SDK regularly to access the latest API capabilities and fixes.

Before you update the SDK, review the GitHub releases for changes that might affect your application.

Release notes

See GitHub releases for new features, fixes, and breaking changes in each SDK release.

Major-version upgrades

The SDK doesn't provide separate migration guides. Breaking changes ship only in major versions, so before you upgrade, review the GitHub releases for breaking changes, then update and test in a development environment before you deploy.

Documentation

Resources and support

  • Versioning: The SDK follows Semantic Versioning. Breaking changes are released in major versions.
  • Security: Report vulnerabilities privately by following the instructions in SECURITY.md. Don't report vulnerabilities in public issues.
  • Support: For product and API support, contact support@wavix.com.
  • Issues: To report an SDK bug or request a feature, open a GitHub issue.
  • License: The SDK is available under the MIT License.

Contributing

The SDK source code is generated. Changes made directly to generated files are overwritten in the next release and can't be merged as submitted. Before you prepare a code change, open an issue to discuss the proposed update.

You can submit README improvements directly in a pull request.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wavix_python_sdk-1.0.0.tar.gz (199.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

wavix_python_sdk-1.0.0-py3-none-any.whl (458.7 kB view details)

Uploaded Python 3

File details

Details for the file wavix_python_sdk-1.0.0.tar.gz.

File metadata

  • Download URL: wavix_python_sdk-1.0.0.tar.gz
  • Upload date:
  • Size: 199.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for wavix_python_sdk-1.0.0.tar.gz
Algorithm Hash digest
SHA256 8f4a6393da6519eaac06f2c4d0684ae9103be7c9734c6714a97048e836027c61
MD5 daabdb0fa69cfbbb097aa20d757631a4
BLAKE2b-256 2dda2bc1d73e3569df49b4fb448c2417dd75f395dfc24a37d40a2b0eaa2cf4cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavix_python_sdk-1.0.0.tar.gz:

Publisher: ci.yml on Wavix/wavix-python-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file wavix_python_sdk-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for wavix_python_sdk-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 c86514a786a192f2655a5d6989440ceeeb5a49bedde3058b4591b9c79b92edc5
MD5 49b1d394dbd9b5f2e475f331730d9480
BLAKE2b-256 9bed4ba151a9fd5a82297abc04bf1d13a7cc0364e97cb044bfb249f0a44073e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for wavix_python_sdk-1.0.0-py3-none-any.whl:

Publisher: ci.yml on Wavix/wavix-python-sdk

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page