hivesolutions / appier

Joyful Python Web App development
http://appier.hive.pt
Apache License 2.0
127 stars 22 forks source link

Cron Scheduler #65

Closed joamag closed 7 months ago

joamag commented 7 months ago

Description

Add support for a Cron-like Scheduler that can easily handle the schedule of simple tasks regularly.

This feature has the potential to greatly simplify the way regular job handling is done within the Appier context.

Implementation

The solution should expose an interface similar to:

def schedule(self, task: function, cron: string):
    pass