Skip to content

Commit 4f9c1dd

Browse files
committed
fix responsive glitch toc
1 parent 2f37f90 commit 4f9c1dd

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+77
-86
lines changed

content/pages/04-web-development/29-dramatiq.markdown

Lines changed: 0 additions & 35 deletions
This file was deleted.

content/pages/04-web-development/26-task-queues.markdown renamed to content/pages/04-web-development/29-task-queues.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Task Queues
22
category: page
33
slug: task-queues
4-
sortorder: 0726
4+
sortorder: 0429
55
toc: False
66
sidebartitle: Task Queues
77
meta: Task queues handle asynchronous jobs outside a Python web application HTTP request-response cycle.

content/pages/04-web-development/27-celery.markdown renamed to content/pages/04-web-development/30-celery.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Celery
22
category: page
33
slug: celery
4-
sortorder: 0727
4+
sortorder: 0430
55
toc: False
66
sidebartitle: Celery
77
meta: Celery is a task queue for executing work outside a Python web application HTTP request-response cycle.

content/pages/04-web-development/28-rq-redis-queue.markdown renamed to content/pages/04-web-development/31-rq-redisu-queue.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Redis Queue (RQ)
22
category: page
33
slug: redis-queue-rq
4-
sortorder: 0728
4+
sortorder: 0431
55
toc: False
66
sidebartitle: Redis Queue (RQ)
77
meta: Redis Queue (RQ) is a Python task queue built on top of Redis that executes work outside an HTTP request-response cycle.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
title: Dramatiq
2+
category: page
3+
slug: dramatiq
4+
sortorder: 0432
5+
toc: False
6+
sidebartitle: Dramatiq
7+
meta: Dramatiq is an alternative to the Celery task queue that support RabbitMQ and Redis as brokers.
8+
9+
10+
# Dramatiq
11+
[Dramatiq](https://dramatiq.io) ([source code](https://github.com/Bogdanp/dramatiq))
12+
is a Python-based [task queue](/task-queues.html)
13+
created as an alernative to the ubiquitous [Celery](/celery.html) project
14+
Dramatiq supports RabbitMQ and Redis as message brokers.
15+
16+
<div class="well see-also">Dramatiq is an implementation of the <a href="/task-queues.html">task queues</a> concept. Learn more in the <a href="/web-development.html">web development</a> chapter or view the <a href="/table-of-contents.html">table of contents</a> for all topics.</div>
17+
18+
19+
### Dramatiq resources
20+
* [django_dramatiq](https://github.com/Bogdanp/django_dramatiq) is an
21+
app for integrating Dramatiq with [Django](/django.html).
22+
* [django_dramatiq_example](https://github.com/Bogdanp/django_dramatiq_example)
23+
is a simple Django project demoing how you can combine Django and Dramatiq.
24+
* [flask_dramatiq_example](https://github.com/Bogdanp/flask_dramatiq_example)
25+
is an example [Flask](/flask.html) app that shows how to use Dramatiq.
26+

content/pages/04-web-development/33-static-site-generator.markdown renamed to content/pages/04-web-development/34-static-site-generator.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Static Site Generators
22
category: page
33
slug: static-site-generator
4-
sortorder: 0733
4+
sortorder: 0434
55
toc: False
66
sidebartitle: Static Site Generators
77
meta: A static site generator combines a markup language with a templating engine to produce HTML files. Learn more on Full Stack Python.

content/pages/04-web-development/34-pelican.markdown renamed to content/pages/04-web-development/35-pelican.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Pelican
22
category: page
33
slug: pelican
4-
sortorder: 0734
4+
sortorder: 0435
55
toc: False
66
sidebartitle: Pelican
77
meta: Pelican is a static site generator implemented in Python that uses Markdown or reStructuredText to produce websites.

content/pages/04-web-development/35-lektor.markdown renamed to content/pages/04-web-development/36-lektor.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Lektor
22
category: page
33
slug: lektor
4-
sortorder: 0735
4+
sortorder: 0436
55
toc: False
66
sidebartitle: Lektor
77
meta: Lektor is a static website generator with content management system (CMS) and web framework features for creating websites.

content/pages/04-web-development/36-mkdocs.markdown renamed to content/pages/04-web-development/37-mkdocs.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: MkDocs
22
category: page
33
slug: mkdocs
4-
sortorder: 0736
4+
sortorder: 0437
55
toc: False
66
sidebartitle: MkDocs
77
meta: MkDocs is a static site generator built in Python that is intended for creating slick project documentation.

content/pages/04-web-development/37-testing.markdown renamed to content/pages/04-web-development/38-testing.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Testing
22
category: page
33
slug: testing
4-
sortorder: 0401
4+
sortorder: 0438
55
toc: False
66
sidebartitle: Testing
77
meta: Testing code is a vital part of developing Python applications. Learn more about testing on Full Stack Python.

0 commit comments

Comments
 (0)