[ Python ] 새로 만든 함수 수정 후 restart 안하고 reload하기
2019. 9. 18. 19:36ㆍ분석 Python/구현 및 자료
함수를 잘 못 짜서 다시 load를 해야하는 경우에 함수만 바꾼다고 해서 이미 올라간 것이 바뀌지 않는다.
그래서 위에 2줄을 써주면 다시 load가 되서 수정된 것이 반영된다.
%load_ext autoreload
%autoreload 2
from custom_package import *
728x90
'분석 Python > 구현 및 자료' 카테고리의 다른 글
[ Python ] logging level name 추가 및 color 넣기 (0) | 2019.09.29 |
---|---|
__pycache__ 폴더 제거하는 방법 (0) | 2019.09.20 |
[ Python ] custom logging level 만들기 (0) | 2019.09.11 |
[ Python ] imputation algorithm package 정리 (2) | 2019.09.10 |
[ Python ] How to fast String to pandas data frame 연습 (0) | 2019.09.04 |