telnyx-seti-python

📁 team-telnyx/telnyx-ext-agent-skills 📅 1 day ago
3
总安装量
2
周安装量
#59921
全站排名
安装命令
npx skills add https://github.com/team-telnyx/telnyx-ext-agent-skills --skill telnyx-seti-python

Agent 安装分布

opencode 2
antigravity 2
claude-code 2
github-copilot 2
windsurf 2
codex 2

Skill 文档

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)