Is there any way how to automaticaly show variables var1 and var2 and their init-values in sphinx documentation?
class MyClass:
"""
Description for class
"""
def __init__(self, par1, par2):
self.var1 = par1 * 2
self.var2 = par2 * 2
def method(self):
pass
Your variables are instance variables, not class variables.
Without attaching a docstring (or a
#:
"doc comment") to the variables, they won't be documented. You could do as follows:But I would prefer to include variable documentation by using info fields:
See also: