You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
provides a thorough view of basic concepts and features for the framework.</p>
1906
1906
</li>
1907
1907
<li>
1908
1908
<p>Digital Ocean provides an extensive <ahref="https://www.digitalocean.com/community/articles/how-to-use-the-bottle-micro-framework-to-develop-python-web-apps">introductory post on Bottle</a>.</p>
1909
1909
</li>
1910
1910
<li>
1911
+
<p><ahref="https://realpython.com/blog/python/developing-with-bottle-part-1/">Developing With Bottle</a> details how to create a basic application with Bottle.</p>
1912
+
</li>
1913
+
<li>
1911
1914
<p>This tutorial provides a walkthrough for
1912
1915
<ahref="http://www.giantflyingsaucer.com/blog/?p=3598">getting started with Bottle</a>.</p>
1913
1916
</li>
1914
1917
<li>
1915
-
<p>Here's a short code snippet for
1918
+
<p>Here's a short code snippet for
1916
1919
<ahref="http://myadventuresincoding.wordpress.com/2011/01/02/creating-a-rest-api-in-python-using-bottle-and-mongodb/">creating a RESTful API with Bottle and MongoDB</a>.</p>
provides a thorough view of basic concepts and features for the framework.</p>
47
47
</li>
48
48
<li>
49
49
<p>Digital Ocean provides an extensive <ahref="https://www.digitalocean.com/community/articles/how-to-use-the-bottle-micro-framework-to-develop-python-web-apps">introductory post on Bottle</a>.</p>
50
50
</li>
51
51
<li>
52
+
<p><ahref="https://realpython.com/blog/python/developing-with-bottle-part-1/">Developing With Bottle</a> details how to create a basic application with Bottle.</p>
53
+
</li>
54
+
<li>
52
55
<p>This tutorial provides a walkthrough for
53
56
<ahref="http://www.giantflyingsaucer.com/blog/?p=3598">getting started with Bottle</a>.</p>
54
57
</li>
55
58
<li>
56
-
<p>Here's a short code snippet for
59
+
<p>Here's a short code snippet for
57
60
<ahref="http://myadventuresincoding.wordpress.com/2011/01/02/creating-a-rest-api-in-python-using-bottle-and-mongodb/">creating a RESTful API with Bottle and MongoDB</a>.</p>
Copy file name to clipboardExpand all lines: source/content/pages/04-web-development/04-bottle.markdown
+13-11Lines changed: 13 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@ title: Bottle
2
2
category: page
3
3
slug: bottle
4
4
sort-order: 0404
5
-
meta: Bottle is a Python web framework contained within a single source file. Learn more about Bottle on Full Stack Python.
5
+
meta: Bottle is a Python web framework contained within a single source file. Learn more about Bottle on Full Stack Python.
6
6
7
7
8
8
# Bottle
@@ -13,18 +13,20 @@ included with Python.
13
13
14
14
15
15
## Bottle resources
16
-
* The [official Bottle tutorial](http://bottlepy.org/docs/dev/tutorial.html)
16
+
* The [official Bottle tutorial](http://bottlepy.org/docs/dev/tutorial.html)
17
17
provides a thorough view of basic concepts and features for the framework.
18
18
19
19
* Digital Ocean provides an extensive [introductory post on Bottle](https://www.digitalocean.com/community/articles/how-to-use-the-bottle-micro-framework-to-develop-python-web-apps).
20
20
21
+
*[Developing With Bottle](https://realpython.com/blog/python/developing-with-bottle-part-1/) details how to create a basic application with Bottle.
22
+
21
23
* This tutorial provides a walkthrough for
22
24
[getting started with Bottle](http://www.giantflyingsaucer.com/blog/?p=3598).
23
25
24
-
* Here's a short code snippet for
26
+
* Here's a short code snippet for
25
27
[creating a RESTful API with Bottle and MongoDB](http://myadventuresincoding.wordpress.com/2011/01/02/creating-a-rest-api-in-python-using-bottle-and-mongodb/).
26
28
27
-
* This [tutorial](http://gotofritz.net/blog/weekly-challenge/restful-python-api-bottle/)
29
+
* This [tutorial](http://gotofritz.net/blog/weekly-challenge/restful-python-api-bottle/)
28
30
is another Bottle walkthrough for creating a RESTful web API.
29
31
30
32
*[BAM! A Web Framework "Short Stack"](http://reachtim.com/articles/BAM-Short-Stack.html)
@@ -40,22 +42,22 @@ included with Python.
40
42
*[Pattle](https://github.com/thekad/pasttle) is a pastebin clone built with
41
43
Bottle.
42
44
43
-
*[Decanter](http://gengo.github.io/decanter/) is a library for structuring
45
+
*[Decanter](http://gengo.github.io/decanter/) is a library for structuring
0 commit comments