[Python] importlib ์ฌ์ฉ์ ์ ์ ๋ฆฌ๋ก๋
ยท
๐ Python
Sol 1) importlib์ reload( ) ํจ์ ์ฌ์ฉ (3.12 ์ดํ imp ์ง์ X) import example import importlib # make changes to example.py file importlib.reload(example) ๊ธฐ์กด์ sys.path.module์ ๋ฑ๋ก๋ module์ reload ์ํจ๋ค. ์ฃผ์ ํด์ผํ ๊ฒ์ ์ ๋ ๊ฒฝ๋ก์ ์๋ module์ผ ๊ฒฝ์ฐ ์ ๋ ๊ฒฝ๋ก์ ๋ฑ๋ก์ ์์ผ์ค์ผํ๋ค. Sol 2) JupyterNote Book์์ Magic Command๋ก reload ํ๋ ๋ฐฉ๋ฒ ๋๋ณด๊ธฐ https://ipython.readthedocs.io/en/stable/config/extensions/autoreload.html autoreload — IPython 8.14..