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
I’d use Dramatiq with APScheduler, but I wrote the former so I’m biased!
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.
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