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
Copy file name to clipboardExpand all lines: source/content/pages/08-web-frameworks/0801-web-frameworks.markdown
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -154,14 +154,19 @@ included with Python.
154
154
155
155
156
156
### Bottle resources
157
+
* The [official Bottle tutorial](http://bottlepy.org/docs/dev/tutorial.html)
158
+
provides a thorough view of basic concepts and features for the framework.
159
+
157
160
* 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).
158
161
159
162
* This tutorial provides a walkthrough for
160
163
[getting started with Bottle](http://www.giantflyingsaucer.com/blog/?p=3598).
161
164
162
165
* Here's a short code snippet for
163
-
[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/).
166
+
[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/).
164
167
168
+
* This [tutorial](http://gotofritz.net/blog/weekly-challenge/restful-python-api-bottle/)
169
+
is another Bottle walkthrough for creating a RESTful web API.
165
170
166
171
## Web Framework Resources
167
172
* "[What is a web framework?](http://www.jeffknupp.com/blog/2014/03/03/what-is-a-web-framework/)"
@@ -177,3 +182,6 @@ included with Python.
177
182
* This [roundup of 14 minimal Python frameworks](http://codecondo.com/14-minimal-web-frameworks-for-python/)
178
183
contains both familiar and less known Python libraries.
179
184
185
+
* The [web micro-framework battle](http://www.slideshare.net/r1chardj0n3s/web-microframework-battle/)
186
+
presentation goes over Bottle, Flask, and many other lesser known Python
Copy file name to clipboardExpand all lines: task-queues.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -105,7 +105,7 @@ <h2>Task queue projects</h2>
105
105
<li>
106
106
<p>The <ahref="http://python-rq.org/">RQ (Redis Queue)</a> is a simple Python
107
107
library for queueing jobs and processing them in the background with workers.
108
-
RQ is backed by Redis and it is designed to have a low barrier to entry.
108
+
RQ is backed by Redis and is designed to have a low barrier to entry.
109
109
The <ahref="http://nvie.com/posts/introducing-rq/">intro post</a> contains information
110
110
on design decisions and how to use RQ.</p>
111
111
</li>
@@ -132,7 +132,7 @@ <h2>Task queue resources</h2>
132
132
</li>
133
133
<li>
134
134
<p><ahref="https://www.digitalocean.com/community/articles/how-to-use-celery-with-rabbitmq-to-queue-tasks-on-an-ubuntu-vps">How to use Celery with RabbitMQ</a>
135
-
is a detail walkthrough for using these tools on an Ubuntu VPS.</p>
135
+
is a detailed walkthrough for using these tools on an Ubuntu VPS.</p>
0 commit comments