Skip to content

Commit e988aaa

Browse files
committed
adding new flask resource
1 parent a9a1219 commit e988aaa

File tree

4 files changed

+18
-1
lines changed

4 files changed

+18
-1
lines changed

all.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1936,6 +1936,12 @@ <h2>Flask resources</h2>
19361936
functionality to your Flask application.</p>
19371937
</li>
19381938
<li>
1939+
<p><a href="http://fewstreet.com/2015/01/16/flask-blueprint-templates.html">Flask Blueprint templates</a>
1940+
shows a way of structuring your <code>__init__.py</code> file with
1941+
<a href="http://flask.pocoo.org/docs/0.10/blueprints/">blueprints</a> for large
1942+
projects.</p>
1943+
</li>
1944+
<li>
19391945
<p><a href="http://blog.miguelgrinberg.com/post/video-streaming-with-flask">Video streaming with Flask</a>
19401946
is another fantastic tutorial by Miguel Grinberg that covers video
19411947
streaming.</p>

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-10-08T11:10:07Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-10-09T14:02:35Z</updated></feed>

flask.html

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,12 @@ <h2>Flask resources</h2>
202202
functionality to your Flask application.</p>
203203
</li>
204204
<li>
205+
<p><a href="http://fewstreet.com/2015/01/16/flask-blueprint-templates.html">Flask Blueprint templates</a>
206+
shows a way of structuring your <code>__init__.py</code> file with
207+
<a href="http://flask.pocoo.org/docs/0.10/blueprints/">blueprints</a> for large
208+
projects.</p>
209+
</li>
210+
<li>
205211
<p><a href="http://blog.miguelgrinberg.com/post/video-streaming-with-flask">Video streaming with Flask</a>
206212
is another fantastic tutorial by Miguel Grinberg that covers video
207213
streaming.</p>

source/content/pages/04-web-development/03-flask.markdown

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,11 @@ how to <a href="/deployment.html">deploy web applications</a>.
161161
covers a subject that comes up quickly once you begin adding significant
162162
functionality to your Flask application.
163163

164+
* [Flask Blueprint templates](http://fewstreet.com/2015/01/16/flask-blueprint-templates.html)
165+
shows a way of structuring your `__init__.py` file with
166+
[blueprints](http://flask.pocoo.org/docs/0.10/blueprints/) for large
167+
projects.
168+
164169
* [Video streaming with Flask](http://blog.miguelgrinberg.com/post/video-streaming-with-flask)
165170
is another fantastic tutorial by Miguel Grinberg that covers video
166171
streaming.

0 commit comments

Comments
 (0)