Skip to contentSkip to navigationSkip to topbar
On this page

Create an SMS Conversation in Python


Today we're going to answer a fun question: how do you turn a handful of isolated text messages to and from the same party into a true conversation?

The problem here? SMS is a stateless protocol. You're going to need some way to remember state between each exchanged message.

Luckily for us, building traditional web applications has this same hurdle, as HTTP is also a stateless protocol. This problem has been solved for web applications through the use of HTTP cookies and, rather than reinvent that old wheel, the Twilio Messaging API uses the same solution.

This guide will show you how to use Programmable Messaging(link takes you to an external page) to do this. We'll use Python, the Flask(link takes you to an external page) framework, and the Twilio Python SDK.

If you haven't written your own SMS webhooks with Python before, you may want to first check out our guide, Receive and Reply to SMS and MMS Messages in Python.

Ready to go? Let's get started!

(information)

Info

Twilio Conversations, a more recent product offering, is an omni-channel messaging platform that allows you to build engaging conversational, two-way messaging experiences. Be sure to check out our Conversations product to see if it's a better fit for your needs.


Using HTTP Cookies with Webhooks

using-http-cookies-with-webhooks page anchor

Storing Conversation Data

storing-conversation-data page anchor

The cookies let you share state across multiple messages allowing you to treat separate messages as a conversation, and store data about the conversation in the cookies for future reference.

You can store the data directly in a cookie, or you can use a session state management framework. We'll use Flask's built-in session library for this example.


Track SMS Conversations Using a Session

track-sms-conversations-using-a-session page anchor

Now let's try using session counters to see if a particular user has messaged us before. If they're a new sender, we'll thank them for the new message. If they've sent us messages before, we'll specify how many messages we've gotten from them.

Tracking SMS Conversations using CookiesLink to code sample: Tracking SMS Conversations using Cookies
1
from flask import Flask, request, session
2
from twilio.twiml.messaging_response import MessagingResponse
3
4
# The session object makes use of a secret key.
5
SECRET_KEY = 'a secret key'
6
app = Flask(__name__)
7
app.config.from_object(__name__)
8
9
# Try adding your own number to this list!
10
callers = {
11
"+14158675308": "Rey",
12
"+12349013030": "Finn",
13
"+12348134522": "Chewy",
14
}
15
16
17
@app.route("/", methods=['GET', 'POST'])
18
def hello():
19
"""Respond with the number of text messages sent between two parties."""
20
# Increment the counter
21
counter = session.get('counter', 0)
22
counter += 1
23
24
# Save the new counter value in the session
25
session['counter'] = counter
26
27
from_number = request.values.get('From')
28
if from_number in callers:
29
name = callers[from_number]
30
else:
31
name = "Friend"
32
33
# Build our reply
34
message = '{} has messaged {} {} times.' \
35
.format(name, request.values.get('To'), counter)
36
37
# Put it in a TwiML response
38
resp = MessagingResponse()
39
resp.message(message)
40
41
return str(resp)
42
43
44
if __name__ == "__main__":
45
app.run(debug=True)

Need some help?

Terms of service

Copyright © 2024 Twilio Inc.