Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- pip
- SSH
- paramiko
- pytorch
- JSON
- C
- LIST
- OpenCV
- error
- YOLO
- Visual Studio
- Selenium
- pandas
- label
- 오류
- 채보
- C++
- 기타 연주
- C#
- Linux
- Python
- 핑거스타일
- 명령어
- VS Code
- 프로그래머스
- mysql
- ubuntu
- Docker
- windows forms
- Numpy
Archives
- Today
- Total
기계는 거짓말하지 않는다
Python 데몬(daemon) 쓰레드 설정(메인 쓰레드 종료 시 함께 종료) 본문
파이썬의 threading 모듈에서 thread.daemon 속성을 True로 설정하면
해당 쓰레드가 데몬(daemon) 쓰레드로 표시되도록 한다.
데몬 쓰레드는 메인 쓰레드가 종료되면 함께 종료되는 쓰레드이다.
기본적으로 thread.daemon 속성은 False로 설정된다.
기본적으로 생성된 쓰레드는 데몬 쓰레드가 아니다.
메인 쓰레드가 종료되어도 데몬이 아닌 쓰레드는 실행을 계속한다.
thread.daemon을 True로 설정하면 해당 쓰레드가 메인 쓰레드와 함께 종료되도록 설정되고,
백그라운드에서 동작하는 작업 등을 수행하는 쓰레드를 만들 때 유용하다.
import threading
import time
def daemon_thread():
while True:
print("Running daemon thread.")
time.sleep(1)
# 쓰레드 생성 및 데몬 속성 설정
daemon_thread = threading.Thread(target=daemon_thread)
daemon_thread.daemon = True
# 쓰레드 시작
daemon_thread.start()
# 메인 쓰레드에서 일부 작업 수행
time.sleep(3)
print("Main thread is done.")
'Python' 카테고리의 다른 글
AttributeError: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK' 오류 (1) | 2024.01.27 |
---|---|
Python requests 모듈 JSON 데이터 POST 전송 예제 (0) | 2024.01.21 |
Python pytube youtube 영상 다운로드 (0) | 2024.01.03 |
Python JSON 문자열이 포함된 문자열, output string(stdout)을 JSON 객체로 파싱(parsing) (0) | 2024.01.01 |
Python 여러 줄 문자열 각 라인 최소 indent 만큼 제거하고 출력 (0) | 2024.01.01 |
Comments