In Python, how can I access a docstring on a method without an instance of the class?
Aceess a methods docstring without instance, Python
69 Views Asked by wobbily_col At
2
There are 2 best solutions below
0

You can use help()
here:
>>> class Test:
... def foo(self, bar):
... """ Returns the parameter passed """
... return bar
...
>>> help(Test.foo)
Returns:
Help on method foo in module __main__:
foo(self, bar) unbound __main__.Test method
Returns the parameter passed
(END)
You can use
__doc__
:Or, getdoc() from
inspect
module: