向 python 模块添加帮助

Add help to python module

我使用 Spyder,例如 numpy。然后,当我使用一些功能时,比如 np.interp(),对象检查器为我提供了有关此功能的帮助。如何将文档放入我的模块中,这些模块将显示在 Spyder 的对象检查器中?

那将是 python 文档评论:

"""
This module contains methods and classes
"""

class class_:
    """
    This class is well... a class
    """
    def method(self, in_):
        """
        This method takes one argument: in_ and returns it
        """
        return in_