티스토리 뷰
APscheduler = advanced python scheduler
파이썬에서 제공하는 스케줄러이다.
import time
from apscheduler.schedulers.background import BackgroundScheduler
# Start the scheduler
schedule = BackgroundScheduler()
schedule.start()
def test():
print("테스트1")
schedule.add_job(test, 'interval', minutes=1)
while True:
time.sleep(1)
'Others' 카테고리의 다른 글
[OpenSource] contribution할 프로젝트 찾기 (0) | 2021.03.30 |
---|---|
[OpenSource] OSS Licenses (0) | 2021.03.30 |
pytorch, tensorflow 제발 쓰게 해주세요 (0) | 2020.05.27 |
markdown index, 목차, 문서 내 이동 (0) | 2020.04.21 |
sourcetree stage 단축키 (0) | 2020.04.02 |