Skip to content

Commit 050c9c4

Browse files
committed
adding bottle resources
1 parent 9d053fa commit 050c9c4

File tree

5 files changed

+29
-3
lines changed

5 files changed

+29
-3
lines changed

bottle.html

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ <h2>Bottle framework learning checklist</h2>
6262
<p><i class="fa fa-check-square-o"></i>
6363
Move on to the <a href="/deployment.html">deployment section</a> to get your initial
6464
Bottle application on the web.</p>
65-
<h3>Bottle resources</h3>
65+
<h2>Bottle resources</h2>
6666
<ul>
6767
<li>
6868
<p>The <a href="http://bottlepy.org/docs/dev/tutorial.html">official Bottle tutorial</a>
@@ -83,6 +83,15 @@ <h3>Bottle resources</h3>
8383
<p>This <a href="http://gotofritz.net/blog/weekly-challenge/restful-python-api-bottle/">tutorial</a>
8484
is another Bottle walkthrough for creating a RESTful web API.</p>
8585
</li>
86+
<li>
87+
<p><a href="http://gengo.github.io/decanter/">Decanter</a> is a library for structuring
88+
Bottle projects.</p>
89+
</li>
90+
</ul>
91+
<h2>Open source Bottle example projects</h2>
92+
<ul>
93+
<li><a href="https://github.com/thekad/pasttle">Pattle</a> is a pastebin clone built with
94+
Bottle.</li>
8695
</ul>
8796
<h3>What do you need to learn next?</h3>
8897
<div class="row">

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>2014-04-28T16:17:37Z</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>2014-04-28T16:24:00Z</updated></feed>

flask.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,11 @@ <h2>Flask resources</h2>
134134
<p><a href="http://www.realpython.com/blog/python/flask-by-example-part-1-project-setup/">Flask by Example: Part 1</a>
135135
shows the basic first steps for setting up a Flask project.</p>
136136
</li>
137+
<li>
138+
<p><a href="https://www.digitalocean.com/community/articles/how-to-structure-large-flask-applications">How to Structure Large Flask Applications</a>
139+
covers a subject that comes up quickly once you begin adding significant
140+
functionality to your Flask application.</p>
141+
</li>
137142
</ul>
138143
<h2>Open source Flask example projects</h2>
139144
<ul>

source/content/pages/02-web-frameworks/0205-flask.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@ book so consider picking that up as well.
107107
* [Flask by Example: Part 1](http://www.realpython.com/blog/python/flask-by-example-part-1-project-setup/)
108108
shows the basic first steps for setting up a Flask project.
109109

110+
* [How to Structure Large Flask Applications](https://www.digitalocean.com/community/articles/how-to-structure-large-flask-applications)
111+
covers a subject that comes up quickly once you begin adding significant
112+
functionality to your Flask application.
113+
110114

111115
## Open source Flask example projects
112116
* [Flask Foundation](https://github.com/JackStouffer/Flask-Foundation) is a

source/content/pages/02-web-frameworks/0207-bottle.markdown

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Move on to the [deployment section](/deployment.html) to get your initial
4141
Bottle application on the web.
4242

4343

44-
### Bottle resources
44+
## Bottle resources
4545
* The [official Bottle tutorial](http://bottlepy.org/docs/dev/tutorial.html)
4646
provides a thorough view of basic concepts and features for the framework.
4747

@@ -56,5 +56,13 @@ Bottle application on the web.
5656
* This [tutorial](http://gotofritz.net/blog/weekly-challenge/restful-python-api-bottle/)
5757
is another Bottle walkthrough for creating a RESTful web API.
5858

59+
* [Decanter](http://gengo.github.io/decanter/) is a library for structuring
60+
Bottle projects.
61+
62+
63+
## Open source Bottle example projects
64+
* [Pattle](https://github.com/thekad/pasttle) is a pastebin clone built with
65+
Bottle.
66+
5967

6068
### What do you need to learn next?

0 commit comments

Comments
 (0)