Install Python, Django, and the Plivo Python SDK
You must set up and install Python, Django, and Plivo’s Python SDK before you make your first call.Install Python
Download and install Python from its official site.Install Django and the Plivo Python SDK
Create a projects directory and change into it.$ mkdir mydjangoapps
$ cd mydjangoapps
Install Django and the Plivo Python SDK using pip.$ pip install django plivo
We recommend that you use virtualenv to manage and segregate your Python environments, instead of using sudo with your commands and overwriting dependencies.Once you’ve set up your development environment, you can start making and receiving calls using our APIs and XML documents. Here are three common use cases to get you started.Make your first outbound call
Plivo requests an answer URL when the call is answered (step 4) and expects the file at that address to hold a valid XML response from the application with instructions on how to handle the call. To see how this works, you can use https://s3.amazonaws.com/static.plivo.com/answer.xml as an answer URL to test your first outgoing call. The file contains this XML code:<Response>
<Speak>Congratulations! You've made your first outbound call!</Speak>
</Response>
This code instructs Plivo to say, “Congratulations! You’ve made your first outbound call!” to the call recipient. You can find the entire list of valid Plivo XML verbs in our XML Reference documentation.Create a Django project
Use django-admin to auto-generate code for a Django project.$ django-admin startproject VoiceProj
This command creates a VoiceProj directory in your mydjangoapps directory.Create a Django app for outbound calls
Change to the new directory and create a Django app for outbound calls.$ python manage.py startapp outboundcall
This command creates an outboundcall directory in your VoiceProj directory.Edit outboundcall/views.py and paste into it this code.from django.conf import settings
from django.http import HttpResponse
from django.views.decorators.csrf import csrf_exempt
import plivo
@csrf_exempt
def outboundcall_response(request):
client = plivo.RestClient(settings.<auth_id>, settings.<auth_token>)
response = client.calls.create(
from_=settings.<caller_id>,
to_='<destination_number>',
answer_url='https://s3.amazonaws.com/static.plivo.com/answer.xml',
answer_method='GET', )
return HttpResponse(response)
Replace the auth placeholders with your authentication credentials from the Plivo console. Replace the phone number placeholders with actual phone numbers in E.164 format (for example, +12025551234).Note:
We recommend that you store your credentials in the auth_id and auth_token environment variables to avoid the possibility of accidentally committing them to source control. If you do this, you can initialize the client with no arguments and Plivo will automatically fetch the values from the environment variables. You can use os.environ to store environment variables and retrieve them when initializing the client.
Add a route
Create the file outboundcall/urls.py and paste into it this code.from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$', views.outboundcall_response, name='outboundcall'),
]
Add a route for the outboundcall app into the urls.py of your VoiceProj project. Edit VoiceProj/urls.py and paste into it this code.from django.conf.urls import include, url
from django.contrib import admin
urlpatterns = [
url(r'^outboundcall/', include('outboundcall.urls')),
url(r'^admin/', admin.site.urls),
]
Test
Run your code.$ python manage.py runserver
Receive your first inbound call
Plivo requests an answer URL when it answers the call (step 2) and expects the file at that address to hold a valid XML response from the application with instructions on how to handle the call. In this example, when an incoming call is received, Plivo’s text-to-speech engine plays a message using the Speak XML element.You must have a voice-enabled Plivo phone number to receive incoming calls; you can rent numbers from the Numbers page of the Plivo console, or by using the Numbers API.Create a Django app to handle incoming calls
Change to the VoiceProj directory and create a Django app to handle incoming calls.$ python manage.py startapp receivecall
This command creates a receivecall directory in the VoiceProj directory. Edit receivecall/views.py and paste into it this code.from django.conf import settings
from django.http import HttpResponse
from django.views.decorators.csrf import csrf_exempt
from plivo import plivoxml
@csrf_exempt
def receivecall_response(request):
# Generate a Speak XML document with the details of the text to play on the call
response = (plivoxml.ResponseElement()
.add(plivoxml.SpeakElement('Hello, you just received your first call')))
return HttpResponse(response.to_string(), content_type='text/xml')
Add a route
Create the file receivecall/urls.py and paste into it this code.from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$', views.receivecall_response, name='receivecall'),
]
Add a route for the receivecall app into the urls.py of your VoiceProj project. Edit VoiceProj/urls.py and paste into it this code.from django.conf.urls import include, url
from django.contrib import admin
urlpatterns = [
url(r'^outboundcall/', include('outboundcall.urls')),
url(r'^receivecall/', include('receivecall.urls')),
url(r'^admin/', admin.site.urls),
]
Run the code.$ python3 manage.py runserver
You should see your basic server app in action at http://localhost:8000/receivecall/.Expose your local server to the internet
To receive incoming calls, your local server must connect with Plivo API services. For that, we recommend using ngrok, which exposes local servers running behind NATs and firewalls to the public internet over secure tunnels. Using ngrok, you can set webhooks that can talk to the Plivo server.Note: Before starting the service, add ngrok in the allowed hosts list in the settings.py file in your project.
ALLOWED_HOSTS = ['.ngrok.io']
Run ngrok on the command line, specifying the port that hosts the application on which you want to receive calls (8000 in this case):This starts the ngrok server on your local server. Ngrok will display a forwarding link that you can use as a webhook to access your local server over the public network.You can check the app in action at https://6ea358b0f703.ngrok.io/receivecall/ and check the XML response.Create a Plivo application to receive calls
Associate the Django app you created with Plivo by creating a Plivo application. Visit Voice > Applications and click Add New Application. You can also use Plivo’s Application API.Give your application a name — we called ours Receive_call. Enter the server URL you want to use (for example https://<yourdomain>.com/receive_call.php/) in the Primary Answer URL field and set the method to POST. Click Create Application to save your application.Assign a Plivo number to your application
Navigate to the Numbers page and select the phone number you want to use for this application.From the Application Type drop-down, select XML Application.From the Plivo Application drop-down, select Receive_call (the name we gave the application).Click Update Number to save.Test
Make a call to your Plivo number using any phone.Forward an incoming call
Plivo requests an answer URL when the call is answered (step 4) and expects the file at that address to hold a valid XML response from the application with instructions on how to handle the call. In this example, when an incoming call is received, Plivo forwards the call using the Dial XML element.You must have a voice-enabled Plivo phone number to receive incoming calls; you can rent numbers from the Numbers page of the Plivo console, or by using the Numbers API.Create a Django app to forward calls
Change to the VoiceProj directory and create a Django app to forward incoming calls.$ python3 manage.py startapp forwardcall
This command creates a forwardcall directory in your VoiceProj directory. Edit forwardcall/views.py and paste into it this code.from django.conf import settings
from django.http import HttpResponse
from django.views.decorators.csrf import csrf_exempt
from plivo import plivoxml
@csrf_exempt
def forwardcall_response(request):
# Generate a Dial XML forward the incoming call.
response = plivoxml.ResponseElement()
response.add(
plivoxml.DialElement().add(
plivoxml.NumberElement('<destination_number>')))
return HttpResponse(response.to_string(), content_type='text/xml')
Replace the destination number placeholder with an actual phone number (for example, 12025551234).Add a route
Create the file forwardcall/urls.py and paste into it this code.from django.conf.urls import url
from . import views
urlpatterns = [
url(r'^$', views.forwardcall_response, name='forwardcall'),
]
Add a route for the forwardcall app into the urls.py of your VoiceProj project. Edit VoiceProj/urls.py and paste into it this code.from django.conf.urls import include, url
from django.contrib import admin
urlpatterns = [
url(r'^outboundcall/', include('outboundcall.urls')),
url(r'^receivecall/', include('receivecall.urls')),
url(r'^forwardcall/', include('forwardcall.urls')),
url(r'^admin/', admin.site.urls),
]
If you haven’t done so already, expose your local server to the internet.Create a Plivo application to forward calls
Associate the Django app you created with Plivo by creating a Plivo application. Visit Voice > Applications in the Plivo console and click on Add New Application, or use Plivo’s Application API.Give your application a name — we called ours Forward Call. Enter the server URL you want to use (for example https://<yourdomain>.com/forward_call/) in the Answer URL field and set the method to POST. Click Create Application to save your application.Assign a Plivo number to your application
Navigate to the Numbers page and select the phone number you want to use for this application.From the Application Type drop-down, select XML Application.From the Plivo Application drop-down, select Forward Call (the name we gave the application).Click Update Number to save.Test
Make a call to your Plivo number using any phone. Plivo will send a request to the answer URL you provided requesting an XML response and then forward the call according to the instructions in the XML document the server provides.More use cases
We illustrate more than 20 use cases with code for both API/XML and PHLO on our documentation pages.