我有一个应该有的模块@property
,我通过将一个类设置为模块来解决这个问题。我从这个答案中得到了想法:懒惰的模块变量——可以做到吗?
我希望这是可重复且易于使用的,因此我为它制作了一个元类。这就像一个魅力。
问题是当使用 Sphinx 生成文档属性时没有记录。其他所有内容都按预期记录。我不知道如何解决这个问题,也许这是 Sphinx 的问题?
模块:
import sys
import types
class ClassAsModule(type):
def __new__(cls, name, bases, attrs):
# Make sure the name of the class is the module name.
name = attrs.pop('__module__')
# Create a class.
cls = type.__new__(cls, name, bases, attrs)
# Instantiate the class and register it.
sys.modules[name] = cls = cls(name)
# Update the dict so dir works properly
cls.__dict__.update(attrs)
class TestClass(types.ModuleType):
"""TestClass docstring."""
__metaclass__ = ClassAsModule
@property
def some_property(self):
"""Property docstring."""
pass
def meth():
"""meth doc"""
pass
以及用于生成/查看 Sphinx 文档的复制粘贴:
sphinx-apidoc . -o doc --full
sphinx-build doc html
xdg-open html/module.html
最重要的部分是记录类的属性。奖励积分还可以记录原始模块成员。
编辑:该类应记录为它所在的模块。该类以这种方式使用,因此应该以这种方式出现在 Sphinx 中。
所需输出的示例:
Module Foo
TestClass docstring.
some_property
Property docstring.
meth()
meth doc
编辑2:我发现了一些可能有助于找到解决方案的东西。foo
具有以下内容的常规模块时:
#: Property of foo
prop = 'test'
狮身人面像记录这样的:
foo.prop = 'test'
Property of foo
如果prop
是类的属性,则同样有效。我还没弄清楚为什么它在我的特殊情况下不起作用。