1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Pythonで上位ディレクトリをimportする

Posted at

概要

python3で上位ディレクトリのファイルをimportできるようにする

方法

import sys
import os
sys.path.append(os.path.dirname(sys.path[0]))
import top

sys.path.append()で追加。
sys.path[0]で現在のパスを取得。
os.path.dirname()で一つ上のディレクトリのパスを取得

ディレクトリ構成

dir/
 ├ tmp/
 │ └ main.py
 └ top.py

終わりに

知ってれば簡単。
from-..-import-topでできるって記事があるけど、できない。

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?