Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 배당
- Bestin
- 월패드
- 해외주식
- raspberry pi
- 나스닥
- Apple
- esp32
- 엔비디아
- RS-485
- 오블완
- Home Assistant
- 코스피
- 현대통신
- Espressif
- MQTT
- 파이썬
- 국내주식
- ConnectedHomeIP
- matter
- 퀄컴
- Python
- 티스토리챌린지
- 힐스테이트 광교산
- 홈네트워크
- 매터
- homebridge
- 미국주식
- 공모주
- 애플
Archives
- Today
- Total
목록class (1)
YOGYUI
Python - Decorator in Class
파이썬에서 공통으로 사용되는 구문들은 decorator를 활용해서 코드를 간소화할 수 있다 decorator를 활용한 로깅 예시는 다음과 같다 import logging def log(func): """ Log what function is called """ def wrap_log(*args, **kwargs): name = func.__name__ logger = logging.getLogger(name) logger.setLevel(logging.INFO) # add file handler fh = logging.FileHandler("%s.log" % name) fmt = '%(asctime)s - %(name)s - %(levelname)s - %(message)s' formatter = log..
Software/Python
2021. 7. 5. 16:00