3

我有一个如下所示的目录结构:

scripts/
    __init__.py
    filepaths.py
    Run.py
    domains/
        __init__.py
        topspin.py
        tiles.py
        hanoi.py
        grid.py

我想说:

from scripts import *

并获取 filepaths.py 中的内容,但也获取 hanoi.py 中的内容

外部__init__.py包含:

__all__ = ['filepaths','Run','domains','hanoi']

我不知道如何让内部文件包含在该列表中。单独放置 hanoi 会出现此错误:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'hanoi'

放置 domain.hanoi 会收到以下错误消息:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'domains.hanoi'

我能想到的最后一个合理的猜测是把 scripts.domains.hanoi 得到这个错误信息:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'module' object has no attribute 'scripts.domains.hanoi'

您如何获得所有列表以包含子目录中的内容?

4

2 回答 2

2

scripts/__init__.py, 之前__all__添加以下内容

from domains import topspin, tiles, hanoi, grid

这会将这些模块添加到命名空间,您将能够使用

from scripts import *

笔记

作为一个肥皂盒,最好做类似的事情

from scripts import topspin, tiles, hanoi, grid, filepaths, Run

超过

from scripts import *

因为从现在起 6 个月后,您可能会查看第 400 行代码,并想知道如果您使用导入样式hanoi,它是从哪里来的。*通过明确显示从中导入的scripts内容,可以提醒事物的来源。我相信将来任何试图阅读您的代码的人都会感谢您。

于 2013-06-06T21:25:55.427 回答
1

首先在__init__文件中导入它们。

in scripts/__init__.py, import at least domains, and in scripts/domains/__init__.pyimporthanoi等。或者domains.hanoi直接 import in scripts/__init__.py

如果不导入这些,scripts/__init__.py模块就不会引用 nestend 包。

于 2013-06-06T21:10:37.043 回答