Development Prerequisites

Follow the steps below to use Python to interact with the Telnyx API and get started with the Telnyx Python guides.

  1. Go through the relevent Telnyx Setup Guide to setup your Portal for use.
  2. You'll need to ensure that you have Python installed on your computer. If Python isn’t installed, follow the official installation instructions for your operating system to install it. You can check this by running the following:
Copy
Copied
python --version

Note: After pasting the above content, Kindly check and remove any new line added

  1. You’ll need to have pip installed. If pip isn’t installed, follow the official pip installation instructions for your operating system to install it. You can check this by running:
Copy
Copied
pip --version

Note: After pasting the above content, Kindly check and remove any new line added

  1. Install the required Python dependencies (Requests) by running the following:
Copy
Copied
pip install requests

Note: After pasting the above content, Kindly check and remove any new line added