Get Started with Twilio Video Part 1: Creating a Server with Python/Flask
This is the first part of a two-part tutorial for creating a video web application with a Python3/Flask backend and a JavaScript frontend. In this section, you'll set up a backend server that creates free Twilio WebRTC Go video rooms and generates Access Tokens for video room participants. In part two, you'll create the frontend side of the application, where participants can join a video room and share their video and audio with other participants.
At the end of this full tutorial, you’ll have a web application that allows you to join a two-person video room and video chat with another person.
You can also view the completed code from both parts of the tutorial in GitHub.
If you have already completed the backend section of this tutorial, jump over to Part Two. Otherwise, let’s get going!
Setup
Requirements
- Python (version 3.6 or higher)
- pip (for installing Python packages)
- A free Twilio account. Sign up for a free account or log into an existing account.
Create the project directory
Open a new terminal window and navigate to the directory where you want your project to live. Then, create a project folder and change into this directory:
mkdir video_tutorial && cd video_tutorial
Collect account values and store them in a .env
file
To start, you’ll need to collect a few values from the Twilio Console so that you can connect your application to Twilio. You will store these values in a .env
file, and your server will read in these values.
Within the new project folder you created above, create a file called .env
and open it in your preferred text editor.
The first value you’ll need is your Account SID, which you can find in the Twilio Console. Once you’ve gotten that value, store it in the .env
file:
TWILIO_ACCOUNT_SID=<your account sid>
Create an API Key
Next, you’ll need to create an API key. This is what you’ll use to authenticate with Twilio when making API calls.
You can create an API key using the Twilio CLI, the REST API, or the Twilio Console. This tutorial will show how to generate it via the Console.
To generate the API Key from the Twilio Console:
- Go to the API keys section of the Twilio Console and click "Create API key."
- Give the key a friendly name, such as "First Video Project".
- Choose "United States (US1)" for the Region. Keys created outside the United States (US1) region will not work.
- Choose "Standard" for the key type.
- Click "Create API Key".
When you’ve created the key, you’ll see the friendly name, type, key SID, and API key secret.
Make sure to copy the secret now, because you’ll only be able to see it once. When you leave this page, you won't be able to see the secret again.
Copy the API Key ID and the API Key Secret and store both values in the .env
file.
TWILIO_ACCOUNT_SID=<your account sid>
TWILIO_API_KEY_SID=<key sid>
TWILIO_API_KEY_SECRET=<secret>
Secure your credentials
If you're using git for version control, make sure these credentials remain secure and out of version control. To do this, create a .gitignore
file at the root of your project directory. In this file, you can list the files and directories that you want git to ignore from being tracked or committed.
Open the new .gitignore
file in your code editor and add the .env
file. While you're here, you can also add venv/
, for the virtual environment directory you'll create in the next step.
.env
venv/
Great! Now that you've stored those credentials and added the .env
to .gitignore
, you can move on to creating the Flask server.
Install the dependencies
First, you’ll need to create and activate a virtual environment where you’ll install your dependencies. In your terminal window, type the following command to create a virtual environment called venv
:
python3 -m venv venv
Then, activate the virtual environment. Whenever you run the server for this project or install dependencies, you should be in the virtual environment.
To activate the virtual environment for macOS or Unix, run the following command:
source venv/bin/activate
If you are using a Windows machine, run:
venv\Scripts\activate.bat
Then, you’ll use pip to install the dependencies for this project:
- flask, the webframework you'll use for creating the server
- twilio, the Twilio Python Helper Library
- python-dotenv, for retrieving the environment variables you stored in the .env file
In your terminal window, type the following command:
pip install flask python-dotenv twilio
This command will add the dependencies to your virtual environment. Whenever you start your server, make sure you’re in the virtual environment by running source venv/bin/activate
(macOS/Unix) or venv\Scripts\activate.bat
(Windows). You’ll know that you’re in the virtual environment because you’ll see (venv)
at the beginning of the command line prompt.
Create the Server
You will need a server to generate Access Tokens (to grant participants permission to access a video room) and serve the frontend code that you'll build in Part Two of this tutorial. There are several options for creating web servers with Python, but this tutorial uses Flask.
This section walks through the general setup for a basic Flask server. In the next section, you'll add the Twilio-specific code for creating video rooms.
First, create a new file called app.py
. This will be the server file where you put all the core logic for your web server. Open that file in your text editor, and copy and paste the following code into the file:
import os
import uuid # for generating random user id values
import twilio.jwt.access_token
import twilio.jwt.access_token.grants
import twilio.rest
from dotenv import load_dotenv
from flask import Flask, render_template, request
# Load environment variables from a .env file
load_dotenv()
# Create a Twilio client
account_sid = os.environ["TWILIO_ACCOUNT_SID"]
api_key = os.environ["TWILIO_API_KEY_SID"]
api_secret = os.environ["TWILIO_API_KEY_SECRET"]
twilio_client = twilio.rest.Client(api_key, api_secret, account_sid)
# Create a Flask app
app = Flask(__name__)
# Create a route that just returns "In progress"
@app.route("/")
def serve_homepage():
return "In progress!"
# Start the server when this file runs
if __name__ == "__main__":
app.run(host="0.0.0.0", debug=True)
At the top of the file, you import the dependencies needed for the server. Then, you load the values in your .env
file with load_dotenv
and grab the values from the environment. Using those values, you can create a client with the Twilio Python helper library. You'll use this client to communicate with Twilio.
Next, you create a basic Flask app. Currently, it is just an application with a single route that returns "In progress!".
At the bottom of the file, the server is set to run in debug mode. When the server is in debug mode, it will provide helpful error messages and it will automatically reload the server when you make changes to it. You should remove debug=True
if you run this server in production.
Currently, the application doesn't do much, but you can test it by running the command python app.py
in your terminal, making sure you're in your virtual environment. You should see output similar to the following:
(venv) $ python app.py
* Serving Flask app 'app' (lazy loading)
* Environment: production
WARNING: This is a development server. Do not use it in a production deployment.
Use a production WSGI server instead.
* Debug mode: off
* Running on all addresses.
WARNING: This is a development server. Do not use it in a production deployment.
* Running on http://192.168.86.244:5000/ (Press CTRL+C to quit)
This will start the server on port 5000. Navigate to localhost:5000
in your browser, and you should see the string "In progress!".
Now that you have a functioning web server, you'll create a function that tells Twilio to create or find a video room.
Create rooms
You'll use the twilio_client
you created earlier in app.py
, and write a function to create new video rooms.
In app.py
, underneath where you create the app (app=Flask(__name__)
) and above the "/"
route, paste in the following function:
def find_or_create_room(room_name):
try:
# try to fetch an in-progress room with this name
twilio_client.video.rooms(room_name).fetch()
except twilio.base.exceptions.TwilioRestException:
# the room did not exist, so create it
twilio_client.video.rooms.create(unique_name=room_name, type="go")
In the code above, you create a function called find_or_create_room
, which takes in a room name and checks if a video room with that name already exists for your account. If that room doesn’t exist, you'll get a TwilioRestException
, which will indicate that you should create the room.
This function will create the room as a WebRTC Go room (type="go"
), which is a free room that can have up to two participants.
Eventually, you'll use this function to allow a participant to specify a room to either create or join. In the next section, you'll write a function to create an Access Token for a participant.
Here's the full app.py
code with the new find_or_create_room
function:
import os
import uuid # for generating random user id values
import twilio.jwt.access_token
import twilio.jwt.access_token.grants
import twilio.rest
from dotenv import load_dotenv
from flask import Flask, render_template, request
# Load environment variables from a .env file
load_dotenv()
# Create a Twilio client
account_sid = os.environ["TWILIO_ACCOUNT_SID"]
api_key = os.environ["TWILIO_API_KEY_SID"]
api_secret = os.environ["TWILIO_API_KEY_SECRET"]
twilio_client = twilio.rest.Client(api_key, api_secret, account_sid)
# Create a Flask app
app = Flask(__name__)
def find_or_create_room(room_name):
try:
# try to fetch an in-progress room with this name
twilio_client.video.rooms(room_name).fetch()
except twilio.base.exceptions.TwilioRestException:
# the room did not exist, so create it
twilio_client.video.rooms.create(unique_name=room_name, type="go")
# Create a route that just returns "In progress"
@app.route("/")
def serve_homepage():
return "In progress!"
# Start the server when this files runs
if __name__ == "__main__":
app.run(host="0.0.0.0", debug=True)
Generate an Access Token for a Participant
Now, you'll create a function that returns an Access Token for a participant. An Access Token gives a participant permission to join video rooms.
The Access Token will be in the JSON Web Token (JWT) standard. The Python Twilio helper library contains functions for creating and decoding these tokens in the JWT format.
Copy and paste the following get_access_token
function into app.py
, under the find_or_create_room
function:
def get_access_token(room_name):
# create the access token
access_token = twilio.jwt.access_token.AccessToken(
account_sid, api_key, api_secret, identity=uuid.uuid4().int
)
# create the video grant
video_grant = twilio.jwt.access_token.grants.VideoGrant(room=room_name)
# Add the video grant to the access token
access_token.add_grant(video_grant)
return access_token
The function does the following:
- Takes in a room name
- Creates an Access Token (in JWT format)
- Generates a unique string for a participant's identity (see note below about the participant identity requirement)
- Creates a Video Grant
- Adds it to the Access Token
- Returns the token
The participant identity doesn't need to be a random string — it could be a value like an email, a user's name, or a user ID. However, it does need to be a unique value for the specific room. You cannot create more than one token for a given participant identity in a room.
The Video Grant is important to add to the token, because it is the piece that allows a participant to connect to video rooms. You can limit the participant's access to a particular video room (which the code above does), or you can generate a token with general access to video rooms.
If you were going to connect this application with other Twilio services, such as Twilio Sync or Twilio Conversations, you could create additional Sync or Conversation grants and add them to this token to allow access to those services as well.
Here's the full server code with the added get_access_token
function:
import os
import uuid # for generating random user id values
import twilio.jwt.access_token
import twilio.jwt.access_token.grants
import twilio.rest
from dotenv import load_dotenv
from flask import Flask, render_template, request
# Load environment variables from a .env file
load_dotenv()
# Create a Twilio client
account_sid = os.environ["TWILIO_ACCOUNT_SID"]
api_key = os.environ["TWILIO_API_KEY_SID"]
api_secret = os.environ["TWILIO_API_KEY_SECRET"]
twilio_client = twilio.rest.Client(api_key, api_secret, account_sid)
# Create a Flask app
app = Flask(__name__)
def find_or_create_room(room_name):
try:
# try to fetch an in-progress room with this name
twilio_client.video.rooms(room_name).fetch()
except twilio.base.exceptions.TwilioRestException:
# the room did not exist, so create it
twilio_client.video.rooms.create(unique_name=room_name, type="go")
def get_access_token(room_name):
# create the access token
access_token = twilio.jwt.access_token.AccessToken(
account_sid, api_key, api_secret, identity=uuid.uuid4().int
)
# create the video grant
video_grant = twilio.jwt.access_token.grants.VideoGrant(room=room_name)
# Add the video grant to the access token
access_token.add_grant(video_grant)
return access_token
# Create a route that just returns "In progress"
@app.route("/")
def serve_homepage():
return "In progress!"
# Start the server when this file runs
if __name__ == "__main__":
app.run(host="0.0.0.0", debug=True)
Put it all together in a route
Next, you'll create a route called /join-room
. In Part Two of this Tutorial, your frontend application will make a POST request to this /join-room
route with a room_name
in the body of the request.
Copy and paste the following code in app.py
, underneath the route that returns "In progress!":
@app.route("/join-room", methods=["POST"])
def join_room():
# extract the room_name from the JSON body of the POST request
room_name = request.json.get("room_name")
# find an existing room with this room_name, or create one
find_or_create_room(room_name)
# retrieve an access token for this room
access_token = get_access_token(room_name)
# return the decoded access token in the response
# NOTE: if you are using version 6 of the Python Twilio Helper Library,
# you should call `access_token.to_jwt().decode()`
return {"token": access_token.to_jwt()}
This route takes a POST
request containing a JSON object with a room name, and then calls the find_or_create_room
function and the get_access_token
function. It returns the decoded Access Token, which is a JSON Web Token (JWT).
Here's the final server file with all of these pieces:
import os
import uuid # for generating random user id values
import twilio.jwt.access_token
import twilio.jwt.access_token.grants
import twilio.rest
from dotenv import load_dotenv
from flask import Flask, render_template, request
# Load environment variables from a .env file
load_dotenv()
# Create a Twilio client
account_sid = os.environ["TWILIO_ACCOUNT_SID"]
api_key = os.environ["TWILIO_API_KEY_SID"]
api_secret = os.environ["TWILIO_API_KEY_SECRET"]
twilio_client = twilio.rest.Client(api_key, api_secret, account_sid)
# Create a Flask app
app = Flask(__name__)
def find_or_create_room(room_name):
try:
# try to fetch an in-progress room with this name
twilio_client.video.rooms(room_name).fetch()
except twilio.base.exceptions.TwilioRestException:
# the room did not exist, so create it
twilio_client.video.rooms.create(unique_name=room_name, type="go")
def get_access_token(room_name):
# create the access token
access_token = twilio.jwt.access_token.AccessToken(
account_sid, api_key, api_secret, identity=uuid.uuid4().int
)
# create the video grant
video_grant = twilio.jwt.access_token.grants.VideoGrant(room=room_name)
# Add the video grant to the access token
access_token.add_grant(video_grant)
return access_token
# Create a route that just returns "In progress"
@app.route("/")
def serve_homepage():
return "In progress!"
@app.route("/join-room", methods=["POST"])
def join_room():
# extract the room_name from the JSON body of the POST request
room_name = request.json.get("room_name")
# find an existing room with this room_name, or create one
find_or_create_room(room_name)
# retrieve an access token for this room
access_token = get_access_token(room_name)
# return the decoded access token in the response
# NOTE: if you are using version 6 of the Python Twilio Helper Library,
# you should call `access_token.to_jwt().decode()`
return {"token": access_token.to_jwt()}
# Start the server when this file runs
if __name__ == "__main__":
app.run(host="0.0.0.0", debug=True)
Test this new route by running the server (with the command python app.py
) and making a POST request to http://localhost:5000/join-room
. You can use curl, Postman, HTTPie, or another tool for making this request. To make the request using curl
, run the following command in your terminal:
curl -X POST http://localhost:5000/join-room \
-H "Content-Type: application/json" \
--data '{"room_name": "test room!"}'
You should receive output similar to the output below:
{
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiIsImN0..."
}
You can use the site jwt.io to inspect the token you received and see the different components that make up the Access Token. If you paste the token you received into the jwt.io debugger, it will decode the token and show you what the token includes. You should see that it contains a video grant for the specific room you created. The token will also include fields with other information you provided:
iss
: yourTWILIO_API_KEY_SID
sub
: yourTWILIO_ACCOUNT_SID
identity
: the randomly generated uuid for the participant's identity
You now have a working backend server that will create video rooms and generate Access Tokens! You're done with this section of the tutorial and can move on to Part Two, where you'll create the frontend for this web app.
Need some help?
We all do sometimes; code is hard. Get help now from our support team, or lean on the wisdom of the crowd by visiting Twilio's Stack Overflow Collective or browsing the Twilio tag on Stack Overflow.