# telnyx-seti-python > Access SETI (Space Exploration Telecommunications Infrastructure) APIs. This skill provides Python SDK examples. - Author: aisling404 - Repository: team-telnyx/telnyx-ext-agent-skills - Version: 20260206155921 - Stars: 0 - Forks: 0 - Last Updated: 2026-02-06 - Source: https://github.com/team-telnyx/telnyx-ext-agent-skills - Web: https://mule.run/skillshub/@@team-telnyx/telnyx-ext-agent-skills~telnyx-seti-python:20260206155921 --- --- name: telnyx-seti-python description: >- Access SETI (Space Exploration Telecommunications Infrastructure) APIs. This skill provides Python SDK examples. metadata: author: telnyx product: seti language: python --- # Telnyx Seti - Python ## Installation ```bash pip install telnyx ``` ## Setup ```python 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` ```python response = client.seti.retrieve_black_box_test_results() print(response.data) ```