假設我有一個模塊rules
結構如下:在Python中,如何從__init__.py中導入在同一目錄
rules
├── conditions.py
├── __init__.py
在腳本conditions.py
,我想導入一個名爲類在__init__.py
中定義的RuleParserError
。但是,我一直無法弄清楚如何做到這一點。 (繼Python: How to import from an __init__.py file?我試過
from . import RuleParserError
但這種嘗試運行conditions.py
爲__main__
時導致了ImportError: cannot import name RuleParserError
)。