Skip to content

Commit 225c8d7

Browse files
committed
update existing blog posts
1 parent a2c7109 commit 225c8d7

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

content/pages/12-meta/01-change-log.markdown

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ inception in December 2012. You can view detailed changes via the
1515

1616
## 2017
1717
### April
18+
* Updated many existing blog posts with fixes based on reader feedback
19+
and re-ran them to check what changes were needed.
1820
* New [Serverless compute](/serverless.html) concept page.
1921
* Two new blog posts, one for
2022
[Python 2.7 on AWS Lambda](/blog/aws-lambda-python-2-7.html)

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

Lines changed: 2 additions & 2 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-04-28
6+
modified: 2017-05-11
77
headerimage: /img/160530-respond-sms-python-flask/header.jpg
88
headeralt: Twilio, Python and Flask logos. Copyright their respective owners.
99

@@ -62,7 +62,7 @@ to something like this:
6262
Install Flask and the Twilio Python helper library into the virtualenv with
6363
the `pip` command.
6464

65-
pip install flask twilio
65+
pip install flask twilio==5.7.0
6666

6767

6868
The dependencies are installed so that we can use it with our Python code.

content/posts/160830-phone-calls-bottle.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ slug: dial-outbound-phone-calls-python-bottle
33
meta: A tutorial that shows how to dial outbound phone calls with a Bottle web application built with Python 3.
44
category: post
55
date: 2016-08-30
6-
modified: 2017-03-29
6+
modified: 2017-05-11
77
headerimage: /img/160830-phone-calls-bottle/header.jpg
88
headeralt: Bottle, Python and Twilio logos. Copyright their respective owners.
99

@@ -77,7 +77,7 @@ Next use the `pip` command to install the [Bottle](/bottle.html) and
7777
[Twilio Python](https://www.twilio.com/docs/libraries/python) packages
7878
into your virtualenv.
7979

80-
pip install bottle twilio
80+
pip install bottle twilio==5.7.0
8181

8282

8383
After the installation script finishes, we will have the required

content/posts/161123-make-phone-calls.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ slug: make-phone-calls-python
33
meta: This tutorial shows how to use a Python program and the Twilio API to dial phone calls.
44
category: post
55
date: 2016-11-23
6-
modified: 2017-04-28
6+
modified: 2017-05-11
77
headerimage: /img/161123-python-phone-calls/header.jpg
88
headeralt: Python and Twilio logos. Copyright their respective owners.
99

0 commit comments

Comments
 (0)