我有一个beeware项目,还想在其中使用我自己的模块,如模型和控制器。还有一个模块,它创建了一些我可以测试的对象。
但是,当我想导入模块来创建测试对象并使用该方法时,它只会抛出一个错误:
ImportError: attempted relative import beyond top-level package
经过一些研究,我知道路径(目录(结构,我把模块放在哪里,包在哪里,都很重要。但无论我把模块放在哪里,它都有相同的(或有点像这样(错误。但是我可以导入我的模型来创建这些类的对象。我也无法决定公文包的起点在哪里。
这里是我目前的结构:
/Project_Dir (own created)
/briefcase_project (created from briefcase)
/src
/Models (own created)
/app_directory (created from briefcase)
here is the __main__.py and the __init__.py (the start point I guess) and the app.py (where beeware code is, and also my module import from Test)
/Test (own created, here is a file with a method I want to call)
遗憾的是,我找不到太多关于养蜂的东西,所以我可以找到一个解决方案。
请帮忙。谢谢^^
我做了以下操作来解决这个问题。使用Beeware教程2源代码的示例在Github 上
.
├── __init__.py
├── __main__.py
├── app.py
├── mylib <--- # my lib.
│ ├── __init__.py
│ └── testlib.py
└── resources
├── __init__.py
├── beewarecustomlibexample.icns
├── beewarecustomlibexample.ico
└── beewarecustomlibexample.png
2 directories, 9 files
mylib/testlib.py
def test(text: str) -> str:
return f"Hello: {text}"
在app.py
:中
import toga
from toga.style import Pack
from toga.style.pack import COLUMN, ROW
from beewarecustomlibexample.mylib.testlib import test # Import custom lib
class BeewareCustomLibExample(toga.App):
def startup(self):
...
def say_hello(self, widget):
# Calling my test method
result = test(self.name_input.value)
self.main_window.info_dialog("Test Dialog", result)
def main():
return BeewareCustomLibExample()
以上就是我如何使它工作的。我在MacOS上构建了它,运行良好。
获取您的项目文件夹名称,然后从那里导入,因此,如果您正在修改教程,并且在与app.py
相同的目录中设置了一个名为myModule
的模块文件夹,并且您有一个名为file.py
的文件,其中包含一个称为myClass
的类,则可以键入:
from helloworld.myModule.file import myClass