본문 바로가기

Python/Python 잡지식

Python패키지 _ ImportError

이번 포스팅은 심플하게 코드만 소개하고 마치겠다. 단순히 구버젼과 새버젼의 모듈을 불러올떄 사용하는 방식인 것 같다.

 

Python기본_예외처리에서 사용했던 try와 except 구문을 이용해서 모듈을 불러오는 방법이다.

 


try:
    from lesson_package import utils #구버젼
except ImportError:
    from lesson_package.tools import utils #새버젼