mohana-martin
Results
2
comments of
mohana-martin
@aquib-sh That completely defeats the purpose of using a scheduler.. Might aswell sleep for every 10 minutes. @ponders I believe you could follow/combine the examples: [Run a job once](https://schedule.readthedocs.io/en/stable/examples.html#run-a-job-once) and...
@jamesgeddes I use the following solution: `getattr(schedule.every(5), "seconds").do(lambda: print("Test"))` For your case, replace the "seconds" with the user input. You can also first check whether the user input is actually...