|
|
|
@ -6,7 +6,7 @@ easily.
|
|
|
|
|
RQ requires Redis >= 2.7.0.
|
|
|
|
|
|
|
|
|
|
[](https://secure.travis-ci.org/nvie/rq)
|
|
|
|
|
[](https://pypi.python.org/pypi/rq)
|
|
|
|
|
[](https://pypi.python.org/pypi/rq)
|
|
|
|
|
[](https://caniusepython3.com/project/rq)
|
|
|
|
|
[](https://coveralls.io/r/nvie/rq)
|
|
|
|
|
|
|
|
|
@ -48,7 +48,7 @@ And enqueue the function call:
|
|
|
|
|
|
|
|
|
|
```python
|
|
|
|
|
from my_module import count_words_at_url
|
|
|
|
|
result = q.enqueue(count_words_at_url, 'http://nvie.com')
|
|
|
|
|
job = q.enqueue(count_words_at_url, 'http://nvie.com')
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
For a more complete example, refer to the [docs][d]. But this is the essence.
|
|
|
|
|