Skip to contentSkip to navigationSkip to topbar
On this page

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(link takes you to an external page) in GitHub.

If you have already completed the backend section of this tutorial, jump over to Part Two. Otherwise, let's get going!


Setup

setup page anchor

Requirements

requirements page anchor

Create the project directory

create-the-project-directory page anchor

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

collect-account-values-and-store-them-in-a-env-file page anchor

To start, you'll need to collect a few values from the Twilio Console(link takes you to an external page) 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(link takes you to an external page). Once you've gotten that value, store it in the .env file:

TWILIO_ACCOUNT_SID=<your account sid>

Create an API Key

create-an-api-key page anchor

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(link takes you to an external page). This tutorial will show how to generate it via the Console.

To generate the API Key from the Twilio Console:

When you've created the key, you'll see the friendly name, type, key SID, and API key secret.

(warning)

Warning

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.

1
TWILIO_ACCOUNT_SID=<your account sid>
2
TWILIO_API_KEY_SID=<key sid>
3
TWILIO_API_KEY_SECRET=<secret>

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.

1
.env
2
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

install-the-dependencies page anchor

First, you'll need to create and activate a virtual environment(link takes you to an external page) 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(link takes you to an external page) to install the dependencies for this project:

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.


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(link takes you to an external page).

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:

1
import os
2
import uuid # for generating random user id values
3
4
import twilio.jwt.access_token
5
import twilio.jwt.access_token.grants
6
import twilio.rest
7
from dotenv import load_dotenv
8
from flask import Flask, render_template, request
9
10
# Load environment variables from a .env file
11
load_dotenv()
12
13
# Create a Twilio client
14
account_sid = os.environ["TWILIO_ACCOUNT_SID"]
15
api_key = os.environ["TWILIO_API_KEY_SID"]
16
api_secret = os.environ["TWILIO_API_KEY_SECRET"]
17
twilio_client = twilio.rest.Client(api_key, api_secret, account_sid)
18
19
# Create a Flask app
20
app = Flask(__name__)
21
22
23
# Create a route that just returns "In progress"
24
@app.route("/")
25
def serve_homepage():
26
return "In progress!"
27
28
29
# Start the server when this file runs
30
if __name__ == "__main__":
31
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:

1
(venv) $ python app.py
2
* Serving Flask app 'app' (lazy loading)
3
* Environment: production
4
WARNING: This is a development server. Do not use it in a production deployment.
5
Use a production WSGI server instead.
6
* Debug mode: off
7
* Running on all addresses.
8
WARNING: This is a development server. Do not use it in a production deployment.
9
* 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.


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:

1
def find_or_create_room(room_name):
2
try:
3
# try to fetch an in-progress room with this name
4
twilio_client.video.rooms(room_name).fetch()
5
except twilio.base.exceptions.TwilioRestException:
6
# the room did not exist, so create it
7
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:

1
import os
2
import uuid # for generating random user id values
3
4
import twilio.jwt.access_token
5
import twilio.jwt.access_token.grants
6
import twilio.rest
7
from dotenv import load_dotenv
8
from flask import Flask, render_template, request
9
10
# Load environment variables from a .env file
11
load_dotenv()
12
13
# Create a Twilio client
14
account_sid = os.environ["TWILIO_ACCOUNT_SID"]
15
api_key = os.environ["TWILIO_API_KEY_SID"]
16
api_secret = os.environ["TWILIO_API_KEY_SECRET"]
17
twilio_client = twilio.rest.Client(api_key, api_secret, account_sid)
18
19
# Create a Flask app
20
app = Flask(__name__)
21
22
23
def find_or_create_room(room_name):
24
try:
25
# try to fetch an in-progress room with this name
26
twilio_client.video.rooms(room_name).fetch()
27
except twilio.base.exceptions.TwilioRestException:
28
# the room did not exist, so create it
29
twilio_client.video.rooms.create(unique_name=room_name, type="go")
30
31
32
# Create a route that just returns "In progress"
33
@app.route("/")
34
def serve_homepage():
35
return "In progress!"
36
37
38
# Start the server when this files runs
39
if __name__ == "__main__":
40
app.run(host="0.0.0.0", debug=True)

Generate an Access Token for a Participant

generate-an-access-token-for-a-participant page anchor

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)(link takes you to an external page) 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:

1
def get_access_token(room_name):
2
# create the access token
3
access_token = twilio.jwt.access_token.AccessToken(
4
account_sid, api_key, api_secret, identity=uuid.uuid4().int
5
)
6
# create the video grant
7
video_grant = twilio.jwt.access_token.grants.VideoGrant(room=room_name)
8
# Add the video grant to the access token
9
access_token.add_grant(video_grant)
10
return access_token

The function does the following:

  • Takes in a room name

  • Creates an Access Token (in JWT(link takes you to an external page) 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

(information)

Info

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(link takes you to an external page), 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:

1
import os
2
import uuid # for generating random user id values
3
4
import twilio.jwt.access_token
5
import twilio.jwt.access_token.grants
6
import twilio.rest
7
from dotenv import load_dotenv
8
from flask import Flask, render_template, request
9
10
# Load environment variables from a .env file
11
load_dotenv()
12
13
# Create a Twilio client
14
account_sid = os.environ["TWILIO_ACCOUNT_SID"]
15
api_key = os.environ["TWILIO_API_KEY_SID"]
16
api_secret = os.environ["TWILIO_API_KEY_SECRET"]
17
twilio_client = twilio.rest.Client(api_key, api_secret, account_sid)
18
19
# Create a Flask app
20
app = Flask(__name__)
21
22
23
def find_or_create_room(room_name):
24
try:
25
# try to fetch an in-progress room with this name
26
twilio_client.video.rooms(room_name).fetch()
27
except twilio.base.exceptions.TwilioRestException:
28
# the room did not exist, so create it
29
twilio_client.video.rooms.create(unique_name=room_name, type="go")
30
31
32
def get_access_token(room_name):
33
# create the access token
34
access_token = twilio.jwt.access_token.AccessToken(
35
account_sid, api_key, api_secret, identity=uuid.uuid4().int
36
)
37
# create the video grant
38
video_grant = twilio.jwt.access_token.grants.VideoGrant(room=room_name)
39
# Add the video grant to the access token
40
access_token.add_grant(video_grant)
41
return access_token
42
43
44
# Create a route that just returns "In progress"
45
@app.route("/")
46
def serve_homepage():
47
return "In progress!"
48
49
50
# Start the server when this file runs
51
if __name__ == "__main__":
52
app.run(host="0.0.0.0", debug=True)

Put it all together in a route

put-it-all-together-in-a-route page anchor

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!":

1
@app.route("/join-room", methods=["POST"])
2
def join_room():
3
# extract the room_name from the JSON body of the POST request
4
room_name = request.json.get("room_name")
5
# find an existing room with this room_name, or create one
6
find_or_create_room(room_name)
7
# retrieve an access token for this room
8
access_token = get_access_token(room_name)
9
# return the decoded access token in the response
10
# NOTE: if you are using version 6 of the Python Twilio Helper Library,
11
# you should call `access_token.to_jwt().decode()`
12
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)(link takes you to an external page).

Here's the final server file with all of these pieces:

1
import os
2
import uuid # for generating random user id values
3
4
import twilio.jwt.access_token
5
import twilio.jwt.access_token.grants
6
import twilio.rest
7
from dotenv import load_dotenv
8
from flask import Flask, render_template, request
9
10
# Load environment variables from a .env file
11
load_dotenv()
12
13
# Create a Twilio client
14
account_sid = os.environ["TWILIO_ACCOUNT_SID"]
15
api_key = os.environ["TWILIO_API_KEY_SID"]
16
api_secret = os.environ["TWILIO_API_KEY_SECRET"]
17
twilio_client = twilio.rest.Client(api_key, api_secret, account_sid)
18
19
# Create a Flask app
20
app = Flask(__name__)
21
22
23
def find_or_create_room(room_name):
24
try:
25
# try to fetch an in-progress room with this name
26
twilio_client.video.rooms(room_name).fetch()
27
except twilio.base.exceptions.TwilioRestException:
28
# the room did not exist, so create it
29
twilio_client.video.rooms.create(unique_name=room_name, type="go")
30
31
32
def get_access_token(room_name):
33
# create the access token
34
access_token = twilio.jwt.access_token.AccessToken(
35
account_sid, api_key, api_secret, identity=uuid.uuid4().int
36
)
37
# create the video grant
38
video_grant = twilio.jwt.access_token.grants.VideoGrant(room=room_name)
39
# Add the video grant to the access token
40
access_token.add_grant(video_grant)
41
return access_token
42
43
44
# Create a route that just returns "In progress"
45
@app.route("/")
46
def serve_homepage():
47
return "In progress!"
48
49
50
@app.route("/join-room", methods=["POST"])
51
def join_room():
52
# extract the room_name from the JSON body of the POST request
53
room_name = request.json.get("room_name")
54
# find an existing room with this room_name, or create one
55
find_or_create_room(room_name)
56
# retrieve an access token for this room
57
access_token = get_access_token(room_name)
58
# return the decoded access token in the response
59
# NOTE: if you are using version 6 of the Python Twilio Helper Library,
60
# you should call `access_token.to_jwt().decode()`
61
return {"token": access_token.to_jwt()}
62
63
64
# Start the server when this file runs
65
if __name__ == "__main__":
66
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(link takes you to an external page), Postman(link takes you to an external page), HTTPie(link takes you to an external page), or another tool for making this request. To make the request using curl, run the following command in your terminal:

1
curl -X POST http://localhost:5000/join-room \
2
-H "Content-Type: application/json" \
3
--data '{"room_name": "test room!"}'

You should receive output similar to the output below:

1
{
2
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiIsImN0..."
3
}

You can use the site jwt.io(link takes you to an external page) 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: your TWILIO_API_KEY_SID
  • sub: your TWILIO_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?

Terms of service

Copyright © 2024 Twilio Inc.