forked from mattmakai/fullstackpython.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
193 lines (192 loc) · 11.9 KB
/
blog.html
File metadata and controls
193 lines (192 loc) · 11.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Matt Makai">
<meta name="description" content="A blog with tutorials for Full Stack Python developers.">
<link rel="shortcut icon" href="/img/fsp-fav.png">
<title>Blog - Full Stack Python</title>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<link href="/theme/css/f.min.css" rel="stylesheet">
</head>
<body>
<a href="https://github.com/makaimc/fullstackpython.com"><img style="position: absolute; top: 0; right: 0; border: 0;" src="/img/fork.png" alt="Fork me on GitHub"></a>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="logo-header-section">
<a href="/" style="text-decoration: none; border: none;"><img src="/theme/img/logo.png" height="52" width="52" class="logo-image" style="padding-top: 1px;" alt="Full Stack Python logo"></a>
<span class="logo-title"><a href="https://www.fullstackpython.com/">Full Stack Python</a></span>
</div>
<div class="subnav">
<!--<a href="/blog.html" class="submenu-item-first">Blog</a> |
<a href="/books.html" class="submenu-item">Books</a> | -->
<a href="/table-of-contents.html" class="submenu-item-first">All topics</a> |
<a href="/blog.html" class="submenu-item">Blog</a> |
<a href="/email.html" class="submenu-item">Newsletter</a> |
<a href="https://twitter.com/fullstackpython" class="submenu-item">@fullstackpython</a> |
<a href="https://www.facebook.com/fullstackpython" class="submenu-item">Facebook</a> |
<a href="https://github.com/makaimc/fullstackpython.com/tree/gh-pages/source" class="submenu-item">Source</a>
</div> </div>
</div><div class="row">
<div class="col-md-10">
<h2 style="line-height: 1.5em;"><a href="/blog/reply-sms-text-messages-python-bottle.html">Replying to SMS Text Messages with Python and Bottle</a></h2>
<div class="post-byline">
Posted by <a href="/about-author.html">Matt Makai</a> on
June 05, 2016.
</div>
<p>Python applications can easily
<a href="/blog/send-sms-text-messages-python.html">easily send SMS</a>
by using a <a href="/application-programming-interfaces.html">web API</a>.
Web apps built with the <a href="/bottle.html">Bottle</a> framework can also reply
to incoming text messages by handling inbound HTTP POST webhooks. In
this post ... (<a href="/blog/reply-sms-text-messages-python-bottle.html">read more</a>)
<h2 style="line-height: 1.5em;"><a href="/blog/build-first-slack-bot-python.html">How to Build Your First Slack Bot with Python</a></h2>
<div class="post-byline">
Posted by <a href="/about-author.html">Matt Makai</a> on
June 04, 2016.
</div>
<p><a href="/bots.html">Bots</a> are a useful way to interact with chat services such as
<a href="https://slack.com/">Slack</a>. If you have never built a bot before, this
post provides an easy starter tutorial for combining the
<a href="https://api.slack.com/">Slack API</a> with Python to create your first bot.</p>
<p>We will walk through ... (<a href="/blog/build-first-slack-bot-python.html">read more</a>)
<h2 style="line-height: 1.5em;"><a href="/blog/respond-sms-text-messages-python-flask.html">Responding to SMS Text Messages with Python & Flask</a></h2>
<div class="post-byline">
Posted by <a href="/about-author.html">Matt Makai</a> on
May 30, 2016.
</div>
<p>Short Message Service (SMS) text messages are
<a href="/blog/send-sms-text-messages-python.html">easy to send from Python applications</a>
with a
<a href="/application-programming-interfaces.html">web application programming interface (API)</a>.
Flask applications can also receive incoming text messages and respond
back to the sender with ... (<a href="/blog/respond-sms-text-messages-python-flask.html">read more</a>)
<h2 style="line-height: 1.5em;"><a href="/blog/install-mysql-ubuntu-1604.html">How to Install and Use MySQL on Ubuntu 16.04</a></h2>
<div class="post-byline">
Posted by <a href="/about-author.html">Matt Makai</a> on
May 28, 2016.
</div>
<p><a href="/mysql.html">MySQL</a> is a common open source
<a href="/databases.html">relational database</a> for creating, reading, updating
and deleting data in <a href="/web-frameworks.html">Python web applications</a>.
Let's learn how to install MySQL on Ubuntu 16.04 and then run a few
SQL queries within the command line client.</p>
<p>We ... (<a href="/blog/install-mysql-ubuntu-1604.html">read more</a>)
<h2 style="line-height: 1.5em;"><a href="/blog/postgresql-python-3-psycopg2-ubuntu-1604.html">Setting up PostgreSQL with Python 3 and psycopg on Ubuntu 16.04</a></h2>
<div class="post-byline">
Posted by <a href="/about-author.html">Matt Makai</a> on
May 18, 2016.
</div>
<p><a href="/postgresql.html">PostgreSQL</a> is a powerful open source
<a href="/databases.html">relational database</a> frequently used to create, read,
update and delete <a href="/web-frameworks.html">Python web application</a> data.
<a href="http://pythonhosted.org/psycopg2/">Psycopg2</a> is a PostgreSQL database
driver that serves as a ... (<a href="/blog/postgresql-python-3-psycopg2-ubuntu-1604.html">read more</a>)
<h2 style="line-height: 1.5em;"><a href="/blog/install-redis-use-python-3-ubuntu-1604.html">How to Use Redis with Python 3 and redis-py on Ubuntu 16.04</a></h2>
<div class="post-byline">
Posted by <a href="/about-author.html">Matt Makai</a> on
May 16, 2016.
</div>
<p><a href="http://redis.io">Redis</a> is an in-memory key-value pair
<a href="/no-sql-datastore.html">NoSQL data store</a> often used
for <a href="/web-frameworks.html">web application</a> sessions,
transient <a href="/data.html">data</a> and as a broker for
<a href="/task-queues.html">task queues</a>. redis-py is a common Python code ... (<a href="/blog/install-redis-use-python-3-ubuntu-1604.html">read more</a>)
<h2 style="line-height: 1.5em;"><a href="/blog/send-mms-picture-messages-python.html">How to Send MMS Picture Messages with Python</a></h2>
<div class="post-byline">
Posted by <a href="/about-author.html">Matt Makai</a> on
May 15, 2016.
</div>
<p>Multimedia Message Service (MMS) picture and video messages are a common
extension to the Short Message Service (SMS) system for sending text
messages. Using a
<a href="/application-programming-interfaces.html">web application programming interface (API)</a>
with Python makes it easy to send MMS messages from a web application or
script. ... (<a href="/blog/send-mms-picture-messages-python.html">read more</a>)
<h2 style="line-height: 1.5em;"><a href="/blog/python-3-bottle-gunicorn-ubuntu-1604-xenial-xerus.html">Configuring Python 3, Bottle and Gunicorn for Development on Ubuntu 16.04 LTS</a></h2>
<div class="post-byline">
Posted by <a href="/about-author.html">Matt Makai</a> on
May 13, 2016.
</div>
<p>The Ubuntu 16.04 Long Term Support (LTS) Linux
<a href="/operating-systems.html">operating system</a> was released in April 2016.
This latest Ubuntu release is named "Xenial Xerus" and
it is the first Ubuntu release to include <a href="/python-2-or-3.html">Python 3</a>,
instead of Python 2.x, as the default Python installation.</p>
<p>We can ... (<a href="/blog/python-3-bottle-gunicorn-ubuntu-1604-xenial-xerus.html">read more</a>)
<h2 style="line-height: 1.5em;"><a href="/blog/send-sms-text-messages-python.html">How to Send SMS Text Messages with Python</a></h2>
<div class="post-byline">
Posted by <a href="/about-author.html">Matt Makai</a> on
May 11, 2016.
</div>
<p>Short Message Service (SMS) text messages are ubiquitous for communication
all over the world. It is easy to send SMS text messages from a
<a href="/why-use-python.html">Python</a> application using a
<a href="/application-programming-interfaces.html">web application programming interface (API)</a>.
Let's take a look at the tools we need ... (<a href="/blog/send-sms-text-messages-python.html">read more</a>)
<h2 style="line-height: 1.5em;"><a href="/blog/python-3-flask-green-unicorn-ubuntu-1604-xenial-xerus.html">How to set up Python 3, Flask and Green Unicorn on Ubuntu 16.04 LTS</a></h2>
<div class="post-byline">
Posted by <a href="/about-author.html">Matt Makai</a> on
May 10, 2016.
</div>
<p>Ubuntu's latest Long Term Support (LTS)
<a href="/operating-systems.html">operating system</a> was released last month, in
April 2016. The 16.04 update for Ubuntu is known as "Xenial Xerus" and
it's the first Ubuntu release to include <a href="/python-2-or-3.html">Python 3</a>
as the default Python installation.</p>
<p>We can use this new ... (<a href="/blog/python-3-flask-green-unicorn-ubuntu-1604-xenial-xerus.html">read more</a>)
<h2 style="line-height: 1.5em;"><a href="/blog/python-3-django-gunicorn-ubuntu-1604-xenial-xerus.html">Setting up Python 3, Django and Gunicorn on Ubuntu 16.04 LTS</a></h2>
<div class="post-byline">
Posted by <a href="/about-author.html">Matt Makai</a> on
May 09, 2016.
</div>
<p>Ubuntu released the newest Long Term Support (LTS) version of its
<a href="/operating-systems.html">operating system</a> in April 2016. The update
brings Ubuntu to version 16.04 and its latest code name is
"Xenial Xerus". 16.04 is the first Ubuntu release to include
<a href="/python-2-or-3.html">Python 3</a> as the default Python ... (<a href="/blog/python-3-django-gunicorn-ubuntu-1604-xenial-xerus.html">read more</a>)
<h2 style="line-height: 1.5em;"><a href="/blog/full-stack-python-blog.html">The Full Stack Python Blog</a></h2>
<div class="post-byline">
Posted by <a href="/about-author.html">Matt Makai</a> on
May 08, 2016.
</div>
<p>Full Stack Python began way back in December 2012 when I started writing
the initial <a href="/deployment.html">deployment</a>, <a href="/servers.html">server</a>,
operating system, web server and WSGI server pages. Since then, the pages
have expanded out into a
<a href="/table-of-contents.html">boatload of other areas</a>
including ... (<a href="/blog/full-stack-python-blog.html">read more</a>)
</div>
</div>
<hr/>
</div>
<div style="padding: 0 0 20px 0; margin: 0 0 20px 0; background-color: #22B24C;">
<div class="container">
<p class="banner"><a href="https://www.gumroad.com/l/python-deployments" style="color: #fff">Learning web development? Check out The Full Stack Python Guide to Deployments book</a>!</p>
</div>
</div> <div class="container">
<div class="footer pull-right">
<a href="http://www.mattmakai.com/" class="underline">Matt Makai</a>
2016
</div>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-19910497-7', 'auto');
ga('send', 'pageview');
</script>
<script type='text/javascript'>
var trackOutboundLink = function(url) { ga('send', 'event', 'outbound', 'click', url, {'hitCallback': function () { document.location = url; } }); }
</script>
</body>
</html>