1. 6

    I’d use Dramatiq with APScheduler, but I wrote the former so I’m biased!

    1. 2

      Was definitely also looking at Dramatiq! Can you explain why one needs both APScheduler and Dramatiq?

      I also nearly missed the Cron-like scheduling in the cookbook when I looked at the Scheduling Messages portion of the guide.

      1. 2

        APScheduler (or something like it) is necessary if you want to execute tasks at regular intervals (i.e. “cron-like scheduling”) since Dramatiq doesn’t have anything built-in to do that. Of course, you can also just use cron instead of APScheduler. :D