본문 바로가기

Software/Python

[Python] schedule 라이브러리

728x90

 30분마다 실행

schedule.every(30).minutes.do(실행할 함수)

 

매주 월요일 9시 10분마다 실행

schedule.every().monday.at("09:10").do(실행할 함수)

 

매일 10시 30분마다 실행

schedule.every().day.at("10:30").do(실행할 함수)

728x90