scheduler2.py 887 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. import schedule
  2. import time
  3. import logging
  4. from config.Aufgaben import run_tasks
  5. class Tasks:
  6. repeat: schedule.Scheduler
  7. def __init__(self, s: schedule.Scheduler):
  8. self.repeat = s
  9. def ping(self):
  10. print("I'm working...")
  11. def status(self):
  12. print("I'm working...")
  13. def batch(self, command):
  14. print("I'm working...")
  15. def call(self, command):
  16. print("I'm working...")
  17. def send_mail(self):
  18. print("I'm working...")
  19. logging.basicConfig(filename="logs/scheduler.log", level=logging.INFO)
  20. schedule_logger = logging.getLogger("schedule")
  21. def main():
  22. tasks = Tasks(schedule.Scheduler())
  23. run_tasks(tasks)
  24. while True:
  25. tasks.repeat.run_pending()
  26. n = schedule.idle_seconds()
  27. print("Waiting " + str(n) + " seconds...")
  28. time.sleep(n)
  29. if __name__ == "__main__":
  30. main()