Python 특정 폴더 import

Importing files from different folder in Python
Python 특정 폴더 import
Python 다른 폴더 import
파이썬 하위폴더 import

1 방법[ | ]

sys.path.insert(0, '폴더')
import 파일명

2 예시[ | ]

  • 여기서는 하위폴더 my_lib의 greept.py 모듈을 import해본다.
[root@localhost ~]# cat test.py
import sys
sys.path.insert(0, './my_lib')
import greeting

greeting.hello()
[root@localhost ~]# cat my_lib/greeting.py
def hello():
	print "world"
[root@localhost ~]# python test.py
world

3 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}