This is a simple exemple of a recurring task using MRQ, printing text to the terminal.
Launch MongoDB & Redis if they are not already started:
$ mongod &
$ redis-server &
Then launch a scheduler worker by feeding him the config.
mrq-worker --scheduler --config config.py
We have here an exemple of a task recurring every ~10 seconds. It is also possible to launch the tasks everyday, or on specifics days of the week or month.
We advise you to look at the tests for these use-cases.