Show HN: FastScheduler – Decorator-first Python task scheduler, async support
Source: Hacker News
Overview
Hi! I’ve built this because I kept reaching for Celery for simple scheduled tasks and it felt like overkill. I just needed “run this function every hour” or “daily at 9am”, not distributed workers. So it’s decorators for scheduling (@scheduler.every(5).minutes, @scheduler.daily.at("09:00")), state s…