HackerTrans
トップ新着トレンドコメント過去質問紹介求人

michielme

no profile record

投稿

Show HN: FlowWatch – Decorator-first file watcher for Python workflows

github.com
1 ポイント·投稿者 michielme·6 か月前·0 コメント

Show HN: FastScheduler – Decorator-first Python task scheduler, async support

github.com
46 ポイント·投稿者 michielme·6 か月前·14 コメント

コメント

michielme
·6 か月前·議論
Good point. Right now it relies on FastAPI's dependency injection — you can wrap the router with your own auth middleware or add dependencies when including it. But I should add an example to the docs. Thanks for the nudge.
michielme
·6 か月前·議論
Really appreciate you sharing this setup. The cron file generation for persistence is clever, and the whitelisting approach for user-defined jobs makes a lot of sense. Might borrow some of these ideas if I add a UI for job creation. Thanks!
michielme
·6 か月前·議論
Interesting idea. Right now jobs are code-only which keeps it simple, but a UI for defining basic jobs could work. I'll think about it.
michielme
·6 か月前·議論
Fair point. Cron works fine for standalone scripts. This is more for when you want scheduled tasks inside an existing Python app without spinning up separate infrastructure.
michielme
·6 か月前·議論
APScheduler is solid and more mature. Main difference is the API — FastScheduler is decorator-first so you get @scheduler.daily.at("09:00") instead of configuring triggers, executors, and job stores separately. Also has a built-in FastAPI dashboard.
michielme
·6 か月前·議論
Definitely open to PRs! Still early days so lots of room for improvement. Feel free to open an issue if you have ideas.
michielme
·6 か月前·議論
Thanks! Yeah that's exactly the use case — when you just need something scheduled without setting up a whole stack.