python schedule 을 이용한 프로그램 시작과 종료
import schedule
import time
current_time = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
# print(current_time)
def start_program():
print(current_time)
print("프로그램이 시작되었습니다.")
def end_program():
print(current_time)
print("프로그램이 종료되었습니다.")
# 시작 시간과 종료 시간 설정
start_time = "15:05" # 시작시간
end_time = "15:06" # 종료시간
# 스케줄링된 작업 추가
schedule.every().day.at(start_time).do(start_program) # 시작 시간에 프로그램 시작 작업 추가
schedule.every().day.at(end_time).do(end_program) # 종료 시간에 프로그램 종료 작업 추가
# 무한루프를 돌며 스케줄링된 작업 실행
while True:
schedule.run_pending()
time.sleep(1)
내가 안짰음...
chatgpt 가 짜줌 ^^
'Python' 카테고리의 다른 글
[Python] 간단한 Tensorflow LSTM 예제 by ChatGPT (0) | 2023.06.01 |
---|---|
[Python] time datetime 을 이용한 시간(datetime) 출력 (0) | 2023.04.04 |
[python] Numpy 를 이용한 1~10까지 더하기 : 누적합(Cumulative Sum) (0) | 2021.11.10 |
[Python] 함수 만들기 (0) | 2021.11.03 |
[Python] Matplotlib 예제 (0) | 2021.11.03 |