1
0

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 1 year has passed since last update.

Pythonで別のディレクトリ内のファイルを参照する

Posted at

このようなディレクトリ構成です

myapp/
├ config
│ ├ asgi.py
│ ├ settings.py
│ └ urls.py ← ここから
└ src
  └ views.py ← ここをimportしたらエラー発生した

config/urls.pyからsrc/views.pyをimportしたところ...

urls.py
from ..src import views

エラー発生

attempted relative import beyond top-level package

(訳:トップレベル パッケージを超えた相対インポートを試みました)

下記を参考にして解決できました
pythonで上のディレクトリ内ファイルをimportする方法

原因

実行ディレクトリをルートディレクトリとするPythonの仕様があるようです。

解決策

urls.py
import sys
sys.path.append('../')
from src import views

sysでプロジェクト内のルートディレクトリに移動し
そこからsrcディレクトリ内にあるviews.pyを参照するようにimportすることで解決できました。

1
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?