# coding:utf-8
from learning_python.Telegram_push.check_hardware import check_cpu
import schedule
import time
schedule.every(5).seconds.do(check_cpu)
while True:
schedule.run_pending()
time.sleep(1)
# coding:utf-8
from learning_python.Telegram_push.check_hardware import check_cpu
import schedule
import time
schedule.every(5).seconds.do(check_cpu)
while True:
schedule.run_pending()
time.sleep(1)