반응형
윈도우 이벤트 로그 파싱하다가 txt로 뽑으려는 찰나에 아래와 같은 오류를 발견했다.
UnicodeEncodeError: 'cp949' codec can't encode character '\u200e' in position 0: illegal multibyte sequence
import sys
import io
sys.stdout = io.TextIOWrapper(sys.stdout.detach(), encoding = 'utf-8')
sys.stderr = io.TextIOWrapper(sys.stderr.detach(), encoding = 'utf-8')
혹은
# -*- encoding: utf-8 -*-
맨 위에 둘 중 하나 추가해 주면 해결된다.
반응형
'[ ★ ]Study > Programming' 카테고리의 다른 글
[Python] 방화벽 로그 DB삽입 (0) | 2020.12.08 |
---|---|
OSError: Invalid argument (python UTC time) (0) | 2020.09.25 |
Python TypeError : 파이썬 타입에러 (0) | 2020.09.18 |
파이썬 mysql 로그 삽입 (0) | 2020.08.25 |
파이썬 웹 크롤링(Web Crawler) (0) | 2020.08.01 |
댓글