Skip to content

Commit 8354fa7

Browse files
committed
tweaking a couple of links
1 parent cb70383 commit 8354fa7

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

content/posts/160511-send-sms-text-message-python.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ slug: send-sms-text-messages-python
33
meta: A how-to guide for sending SMS (text messages) using the Python programming language.
44
category: post
55
date: 2016-05-11
6-
modified: 2017-04-28
6+
modified: 2020-08-05
77
newsletter: False
88
headerimage: /img/160511-send-sms-python/header.jpg
99
headeralt: Twilio and Python logos. Copyright their respective owners.
@@ -25,7 +25,7 @@ those two versions installed.
2525
* [pip](https://pip.pypa.io/en/stable/) and
2626
[virtualenv](https://virtualenv.pypa.io/en/latest/) to handle
2727
[application dependencies](/application-dependencies.html)
28-
* A free [Twilio account](https://www.twilio.com/try-twilio) to use their
28+
* A free [Twilio account](www.twilio.com/referral/w9pugq) to use their
2929
[SMS web API](https://www.twilio.com/docs/api/rest/sending-messages)
3030
* Open source
3131
[Twilio Python helper library](https://pypi.org/project/twilio),
@@ -41,7 +41,7 @@ guide that'll show how to install system packages for those tools.
4141
## Using a Web API
4242
We're going to use a web API to make sending SMS easier and more reliable.
4343
Head to the
44-
[Twilio website and sign up for a free trial account](https://www.twilio.com/try-twilio). If you already have a Twilio account (and you should - it's
44+
[Twilio website and sign up for a free trial account](www.twilio.com/referral/w9pugq)
4545
awesome for more than just sending text messages!) then sign into your
4646
existing account.
4747

content/posts/160530-respond-sms-text-messages-python-flask.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ slug: respond-sms-text-messages-python-flask
33
meta: A quick tutorial on receiving and responding to SMS text messages in a Flask application built with Python.
44
category: post
55
date: 2016-05-30
6-
modified: 2017-05-11
6+
modified: 2020-08-05
77
newsletter: False
88
headerimage: /img/160530-respond-sms-python-flask/header.jpg
99
headeralt: Twilio, Python and Flask logos. Copyright their respective owners.
@@ -26,7 +26,7 @@ those two versions installed on your system.
2626
[virtualenv](https://virtualenv.pypa.io/en/latest/) to handle
2727
[application dependencies](/application-dependencies.html)
2828
* The [Flask](/flask.html) micro web framework
29-
* A free [Twilio account](https://www.twilio.com/try-twilio) to use their
29+
* A free [Twilio account](www.twilio.com/referral/w9pugq) to use their
3030
[SMS web API](https://www.twilio.com/docs/api/rest/sending-messages)
3131
* Open source
3232
[Twilio Python helper library](https://pypi.org/project/twilio)
@@ -158,7 +158,7 @@ to respond to text messages.
158158
## Obtaining Our Phone Number
159159
We can use our Flask application's route to respond to incoming web API
160160
requests based on incoming SMS messages to a Twilio phone number. Go to the
161-
[Twilio website and sign up for a free trial account](https://www.twilio.com/try-twilio)
161+
[Twilio website and sign up for a free trial account](www.twilio.com/referral/w9pugq)
162162
to use their API. If you already have a Twilio account then sign into your
163163
existing account.
164164

0 commit comments

Comments
 (0)