mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2025-12-28 20:29:43 -06:00
10 lines
210 B
Python
10 lines
210 B
Python
# > Schedule a Task
|
|
from examples.simple.worker import simple
|
|
from datetime import datetime
|
|
|
|
schedule = simple.schedule([datetime(2025, 3, 14, 15, 9, 26)])
|
|
|
|
## 👀 do something with the id
|
|
print(schedule.id)
|
|
|