我的包层次结构:

InstrumentController/
    __init__.py
    instruments/
        __init__.py
        _BaseInstrument.py
        Keithley2000.py
        # etc...

仪器文件内容:
# _BaseInstrument.py
class _BaseInstrument(object):
    """Base class for instruments"""
    # etc...

# Keithley2000.py
from InstrumentController.instruments._BaseInstrument import _BaseInstrument
class Keithley2000(_BaseInstrument):
    # etc...

我希望我的用户能够访问这些类,而不必深入研究模块的层次结构。他们只需要输入from InstrumentController.instruments import Keithley2000,而不是from InstrumentController.instruments.Keithley2000 import Keithley2000
为此,我在InstrumentController.instruments.__init__中有很多这样的行:
from .Keithley2000 import Keithley2000
from .StanfordSR830 import StanfordSR830
# etc...

所以现在类位于包的名称空间的顶部,而不是子模块中。我的问题是:这是个好主意吗?类与它们所属的模块具有相同的名称,因此在顶层导入类使该模块不可用。这让我有点害怕-有没有更好的方法?

最佳答案

这样做是可以接受的,但我建议您将所有包/模块名称改为小写,即1)这是惯例specified in PEP 8,2)这将消除阴影问题。

10-01 02:48