Schedule a Python cron task
WayScript allows you to configure your Lair to schedule task execution in minutes.
Use the boilerplate code below to create a
task.py
file in your Lair’s root directory. See File system for more details on how to manipulate files in your workspace file system.i = 0
while i < 5:
print("This prints five times.")
i += 1
Open your Lair’s Triggers Panel and add a new
cron
trigger. Create a name for your trigger, input the following run command, and set an interval or custom cron syntax for your task. See Triggers for more details.python task.py

Example Cron Trigger Setup
Press “Test” to execute the run command and start your task’s process execution. A process tab should open in your Terminal view.

Press Test in your Triggers view to test your cron Trigger. When ready, deploy it to production!
Your task will not be scheduled within your Lair’s development environment. Once you have finished testing, Go to the Deploy Panel to deploy a production instance of your task.
Last modified 1mo ago