개발 일반

[Python] __pychache__ 에 대해서

Demis Tae Kyu Eom 2020. 5. 12. 16:16

파이썬 프로젝트를 진행하다 보면 프로젝트 경로에 "__pychache__"라는 폴더가 생성되는 것을 볼수가 있습니다.

 

평소에 캐쉬파일인가 보다 하고 넘기다가 문득 쟤가 뭐하는 아이인지 궁금해져서 찾아보고 정리하게 됬습니다.

 

https://stackoverflow.com/questions/16869024/what-is-pycache

 

What is __pycache__?

From what I understand, a cache is an encrypted file of similar files. What do we do with the __pycache__ folder? Is it what we give to people instead of our source code? Is it just my input data?...

stackoverflow.com