telnyx-python

(★ 184)

Python SDK for the Telnyx API

File Explorer

Showing a partial file list — download the zip above to see everything.

  • .gitignore
  • .python-version
  • .release-please-manifest.json
  • .stats.yml
  • api.md
  • Brewfile
  • CHANGELOG.md
  • CONTRIBUTING.md
  • LICENSE
  • pyproject.toml
  • README.md
  • release-please-config.json
  • requirements-dev.lock
  • SECURITY.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Showing a partial file list.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

httpx

View Details ▼

A fast and multi-purpose HTTP toolkit written in Go to run multiple probes at once.
Note: Not to be confused with the unrelated Python's HTTPX which has the same command name.

httpx -probe {{[-u|-target]}} {{url|host|ipaddress|subnet_with_cidr}}

Run a probe against a [u]RL, host, IP Address or subnet (CIDR notation) showing probe status:

subfinder {{[-d|-domain]}} {{example.com}} | httpx {{[-sc|-status-code]}}

Run a probe against multiple hosts showing status code with input from `subfinder`:

httpx {{[-rl|-rate-limit]}} {{150}} {{[-l|-list]}} {{path/to/newline_separated_hosts_list}} {{[-td|-tech-detect]}} {{[-rt|-response-time]}}

Run a rate limited probe against a list of hosts from a file showing technology detected and response time:

🔍

pip install

View Details ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

timeout

View Details ▼

Run a command with a time limit.

timeout 3s sleep 10

Run `sleep 10` and terminate it after 3 seconds:

timeout {{[-s|--signal]}} {{INT|HUP|KILL|...}} {{5s}} {{sleep 10}}

Send a signal to the command after the time limit expires (`TERM` by default, `kill -l` to list all signals):

timeout {{[-v|--verbose]}} {{0.5s|1m|1h|1d|...}} {{command}}

Send verbose output to `stderr` showing signal sent upon timeout:

// repository documentation