Skip to content
New issue

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

Schedule a function to run at a specific time #74

Closed
Atanusaha143 opened this issue Nov 12, 2024 · 1 comment
Closed

Schedule a function to run at a specific time #74

Atanusaha143 opened this issue Nov 12, 2024 · 1 comment

Comments

@Atanusaha143
Copy link

Atanusaha143 commented Nov 12, 2024

Can I do something like below?

@taskiq_broker.task(
    schedule=[{"cron": "* * * * *"}],  # Runs every minute
)
async def my_scheduled_task():
    print("do something")

Or any other way to run a function at a specific time?

NOTE: I don't want to use any broker

@s3rius
Copy link
Member

s3rius commented Feb 28, 2025

If you don't want to use taskiq brokers, then it's not possible to do so, because taskiq scheduler is using brokers to trigger tasks via distributed queues. In your case i'd suggest to use traditional aioschedule.

@s3rius s3rius closed this as completed Feb 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants