Telnyx Seti Python

Access SETI (Space Exploration Telecommunications Infrastructure) APIs. This skill provides Python SDK examples.

team-telnyx 787fd9b 758 B Updated

File contents

Telnyx Seti - Python

Installation

pip install telnyx

Setup

import os
from telnyx import Telnyx

client = Telnyx(
    api_key=os.environ.get("TELNYX_API_KEY"),  # This is the default and can be omitted
)

All examples below assume client is already initialized as shown above.

Retrieve Black Box Test Results

Returns the results of the various black box tests

GET /seti/black_box_test_results

response = client.seti.retrieve_black_box_test_results()
print(response.data)

team-telnyx/telnyx-toolkit/tree/main/api/python/telnyx-seti-python commit 787fd9b36e

Frequently asked questions

npx skillmds@latest add team-telnyx/telnyx-seti-python