Zettelkasten

__pycache__

·수정 2026.04.23·수정 1

python 3를 컴파일 하여 실행할 수 있도록 준비한 바이트 코드를 포함하는 폴더 파이썬 모듈을 더 빨리 import 할 수 있게 도와줌

파이썬이 인터프리터 언어이긴하지만 인터프리터가 바로 파이썬 코드를 사용하지 않음 다신 인터프리터가 high-level 파이썬 소스 코드를 byte코드로 변경해서 사용하도록 함

$ python -X importtime calculator.py
(...)
import time:     20092 |      20092 | arithmetic

$ python -X importtime calculator.py
(...)
import time:       232 |        232 | arithmetic

$ python -X importtime calculator.py
(...)
import time:       203 |        203 | arithmetic

https://realpython.com/python-pycache/#in-short-it-makes-importing-python-modules-faster