반응형
나는 어떤 일을 할 수있는 기능이있다. 코드는 1 억 3 천만 번 반복되어야합니다.
현재 저는 Crontab을 사용하여 1 분마다 파이썬 스크립트를 실행합니다. 시간이 너무 오래 걸리므로 처음 실행할 때이 파이썬 스크립트가 실행되고 작업이 끝날 때까지 계속 반복되기를 바랍니다. 두 작업 사이에 10 초 휴식을 원합니다. 어떻게 할 수 있습니까?
해결 방법
import schedule
import time
def job():
print("I'm working...")
schedule.every(10).minutes.do(job)
schedule.every().hour.do(job)
schedule.every().day.at("10:30").do(job)
while 1:
schedule.run_pending()
time.sleep(1)
그냥 실행 : pip 설치 일정
참조 페이지 https://stackoverflow.com/questions/34589347
반응형
'파이썬' 카테고리의 다른 글
파이썬 팬더 : read_html (0) | 2020.11.11 |
---|---|
파이썬 Can't install elementtree with pip (0) | 2020.11.11 |
파이썬 Randomizing a list in Python (0) | 2020.11.11 |
파이썬 Convert Z-score (Z-value, standard score) to p-value for normal distribution in Python (0) | 2020.11.11 |
파이썬 Checking whether a variable is an integer or not (0) | 2020.11.10 |
댓글