All Topics
All Topics
Technology
Technology
AI
AI
Business
Business
Entertainment
Entertainment
News
News
Programming
Programming
Security
Security
Science
Science
Design
Design
Environment
Environment
Finance
Finance
Crypto
Crypto
Politics
Politics
Sports
Sports
Education
Education
Gaming
Gaming
Art
Art
Music
Music
Health
Health
Books
Books
Food
Food
Travel
Travel
Personal
Personal
Bluesky
Twitter

Workers - Cron triggers are now supported in Python Workers

1y ago

Source

CloudflareWorkers - Cron triggers are now supported in Python Workerscloudflare.com
Snippet from the RSS feed
You can now create Python Workers which are executed via a cron trigger. This is similar to how it's done in JavaScript Workers, simply define a scheduled event listener in your Worker: from workers import handler @ handler async def on_scheduled ( event , env , ctx ): print ( "cron processed" ) Define a cron trigger configuration in your Wrangler configuration file: wrangler.jsonc { " triggers " : { // Schedule cron triggers: // - At every 3rd minute // - At 15:00 (UTC) on first day of the month // - At 23:59 (UTC) on the last weekday of the month " crons " : [ "*/3 * * * *" , "0 15 1 * *" , "59 23 LW * *" ] } } wrangler.toml [ triggers ] crons = [ "*/3 * * * *" , "0 15 1 * *" , "59 23 LW * *" ] Then test your new handler by using Wrangler with the --test-scheduled flag and making a request to /cdn-cgi/handler/scheduled?cron=*+*+*+*+* : npx wrangler dev --test-scheduled curl " Consult the Workers Cron Triggers page for full details on cron triggers in Workers.

You might also wanna read

Comments

Sign in to join the conversation.

No comments yet. Be the first.