gpt4 book ai didi

python - '属性错误: module 'usbiss' has no attribute Aclass' when creating class instance

转载 作者:行者123 更新时间:2023-12-01 08:33:49 25 4
gpt4 key购买 nike

尝试编写 python 包,但无法在我的源文件之一中创建类的实例。

包布局是:

-packagedir
----README.md
----setup.py
----packagename
--------__init__.py
--------package.py
--------modules
------------file1.py
------------file2.py

在 packagename 内的 init.py 中,我有:

from . modules import file1
from . modules import file2

文件 file1.py 包含一个类:

class File1():
def __init__(self):
self.val = 0
# Other methods and such

文件 file2.py 包含一个类:

class File2():
def __init__(self):
self.type = 0
# Other methods and such

在 package.py 中我有一个类,如下所示:

class Aclass(file1.File1, file2.File2):
def __init__(self):
# nothing important in here yet

我已经像这样构建并安装了我的包:

python3 setup.py sdist
sudo pip3 install dist/package-0.1.tar.gz

现在我创建一个名为 test.py 的文件,并在其中添加以下内容:

import package
iss = package.Aclass()

当我运行测试文件时,出现以下错误:

AttributeError: module 'usbiss' has no attribute 'Aclass'

我不明白为什么 python 不允许我创建 Aclass 类的实例并认为我正在访问一个属性。我确信我的导入声明或其他东西有根本性的错误,但我不知道它是什么。我该如何纠正这个问题,以便我可以创建 Aclass 的实例并使用它的方法?

谢谢。

最佳答案

这里的问题是我导入的是包本身,而不是该包中的模块。我将 test.py 中的导入更改为:

from package import package

这解决了我的问题。

关于python - '属性错误: module 'usbiss' has no attribute Aclass' when creating class instance,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53812722/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com