Skip to content

Commit 5be968f

Browse files
committed
adding a few bottle resources
1 parent 5e7ed71 commit 5be968f

File tree

3 files changed

+34
-1
lines changed

3 files changed

+34
-1
lines changed

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-02-20T15:17:18Z</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-02-21T09:38:47Z</updated></feed>

source/content/pages/web-frameworks.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,23 @@ The tuts+ `Flask tutorial <http://code.tutsplus.com/tutorials/an-introduction-to
150150
is another great walkthrough for getting started with the framework.
151151

152152

153+
------
154+
Bottle
155+
------
156+
`Bottle <http://bottlepy.org/docs/dev/index.html>`_ is a WSGI-compliant
157+
`single source file <https://github.com/defnull/bottle/blob/master/bottle.py>`_
158+
web framework with no external dependencies except for the standard library
159+
included with Python.
160+
161+
162+
Bottle resources
163+
================
164+
This post provides a short
165+
`tutorial on getting started with Bottle <http://www.giantflyingsaucer.com/blog/?p=3598>`_.
166+
167+
Here's a short code snippet for `creating a REST API with Bottle and MongoDB <http://myadventuresincoding.wordpress.com/2011/01/02/creating-a-rest-api-in-python-using-bottle-and-mongodb/>`_.
168+
169+
153170
---------------------
154171
Web Framework Logging
155172
---------------------

web-frameworks.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,19 @@ <h3>Flask resources</h3>
184184
is another great walkthrough for getting started with the framework.</p>
185185
</div>
186186
</div>
187+
<div class="section" id="bottle">
188+
<h2>Bottle</h2>
189+
<p><a class="reference external" href="http://bottlepy.org/docs/dev/index.html">Bottle</a> is a WSGI-compliant
190+
<a class="reference external" href="https://github.com/defnull/bottle/blob/master/bottle.py">single source file</a>
191+
web framework with no external dependencies except for the standard library
192+
included with Python.</p>
193+
<div class="section" id="bottle-resources">
194+
<h3>Bottle resources</h3>
195+
<p>This post provides a short
196+
<a class="reference external" href="http://www.giantflyingsaucer.com/blog/?p=3598">tutorial on getting started with Bottle</a>.</p>
197+
<p>Here's a short code snippet for <a class="reference external" href="http://myadventuresincoding.wordpress.com/2011/01/02/creating-a-rest-api-in-python-using-bottle-and-mongodb/">creating a REST API with Bottle and MongoDB</a>.</p>
198+
</div>
199+
</div>
187200
<div class="section" id="web-framework-logging">
188201
<h2>Web Framework Logging</h2>
189202
<p>Logging is a common mechanism for monitoring web applications written with a
@@ -210,6 +223,9 @@ <h2>Web Framework Logging</h2>
210223
mail plugin to send emails when exceptions occur.</p>
211224
<div class="section" id="web-framework-resources">
212225
<h3>Web Framework Resources</h3>
226+
<div class="system-message">
227+
<p class="system-message-title">System Message: WARNING/2 (<tt class="docutils">/Users/mattmakai/devel/fsp/source/content/pages/web-frameworks.rst</tt>, line 3); <em><a href="#id7">backlink</a></em></p>
228+
Duplicate explicit target name: &quot;bottle&quot;.</div>
213229
<p><a class="reference external" href="http://bottlepy.org/docs/dev/">Bottle</a>,
214230
<a class="reference external" href="http://www.pylonsproject.org/">Pyramid</a>,
215231
<a class="reference external" href="http://falconframework.org/">Falcon</a>,

0 commit comments

Comments
 (0)