We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the solution you'd like It would be nice to do this:
from rocketry.conds import daily, weekly @app.task(daily.at("12:00", "18:00")) def do_daily_twice(): ... # Condition translates to: daily.at("12:00") | daily.at("18:00") @app.task(weekly.on("Mon", "Fri")) def do_weekly_twice(): ... # Condition translates to: weekly.on("Mon") | weekly.on("Fri")
Describe alternatives you've considered Use OR (|) but this gets tediuous.
|
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Describe the solution you'd like
It would be nice to do this:
Describe alternatives you've considered
Use OR (
|
) but this gets tediuous.The text was updated successfully, but these errors were encountered: