From bbfe621bd1eb860301efc8a24d220dea28fd8b9b Mon Sep 17 00:00:00 2001 From: Vincent Driessen Date: Mon, 2 Apr 2012 08:37:47 +0200 Subject: [PATCH] Mention python-requests.org, for completeness sake. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7def20fb..e108d3a3 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,8 @@ your typically lengthy or blocking function: resp = requests.get(url) return len(resp.text.split()) +You do use the excellent [requests][r] package, don't you? + Then, create a RQ queue: from rq import * @@ -32,8 +34,6 @@ And enqueue the function call: For a more complete example, refer to the [docs][d]. But this is the essence. -[d]: http://nvie.github.com/rq/docs/ - ### The worker @@ -66,6 +66,8 @@ This project has been inspired by the good parts of [Celery][1], [Resque][2] and [this snippet][3], and has been created as a lightweight alternative to the heaviness of Celery or other AMQP-based queueing implementations. +[r]: http://python-requests.org +[d]: http://nvie.github.com/rq/docs/ [m]: http://pypi.python.org/pypi/mailer [p]: http://docs.python.org/library/pickle.html [1]: http://www.celeryproject.org/