How to resolve “ValueError: attempted relative import beyond top-level package”

为君一笑 提交于 2019-12-29 08:20:33

问题


I have the following problem with my project, help me please! Here is the structure of my package:

/pkg

/pkg/__init__.py
/pkg/sub1/__init__.py
/pkg/sub2/__init__.py

/pkg/sub1/foo1.py
/pkg/sub2/foo2.py

Here is implementation of foo1.py:

from ..sub2 import foo2

def f():
    print("Hello!")

When I run foo1 I get error: ValueError: attempted relative import beyond top-level package.

I can solve it doing the following adjustment:

import sys
import os
sys.path.append(os.path.abspath(os.path.pardir))

from sub2 import foo2
def f():
    print("Hello!")

But I wonder if there is a way to do it without importing sys and appending parent directory in it.

I heard that if I had .py file '/pkg/start.py' for example which called my foo1 module, then two dots would work. However, is there any way to call foo2 from foo1 directly?


回答1:


It seems to me, that without adding pkg to my PATH it is impossible to import modules from sub2 in sub1. Here is explanation why:

Relative imports use a module's name attribute to determine that module's position in the package hierarchy. If the module's name does not contain any package information (e.g. it is set to 'main') then relative imports are resolved as if the module were a top level module, regardless of where the module is actually located on the file system.

Here is official python web site, where it is explained



来源:https://stackoverflow.com/questions/51046660/how-to-resolve-valueerror-attempted-relative-import-beyond-top-level-package

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!