I have a Django website, and I want to have a certain piece of Python code run at regular intervals. What would be a good way to do that?
I know I can cron
, but I would prefer the solution to be within Django.
I know there's a module called celery which is supposed to do it, but it requires installing RabbitMQ and configuring it to interact with Apache, which is another thing to maintain, and I prefer to avoid that.
Any suggestions?