How to document class attributes in Python? [closed] How to document class attributes in Python? [closed] python python

How to document class attributes in Python? [closed]


To avoid confusion: the term property has a specific meaning in python. What you're talking about is what we call class attributes. Since they are always acted upon through their class, I find that it makes sense to document them within the class' doc string. Something like this:

class Albatross(object):    """A bird with a flight speed exceeding that of an unladen swallow.    Attributes:        flight_speed     The maximum speed that such a bird can attain.        nesting_grounds  The locale where these birds congregate to reproduce.    """    flight_speed = 691    nesting_grounds = "Throatwarbler Man Grove"

I think that's a lot easier on the eyes than the approach in your example. If I really wanted a copy of the attribute values to appear in the doc string, I would put them beside or below the description of each attribute.

Keep in mind that in Python, doc strings are actual members of the objects they document, not merely source code annotations. Since class attribute variables are not objects themselves but references to objects, they have no way of holding doc strings of their own. I guess you could make a case for doc strings on references, perhaps to describe "what should go here" instead of "what is actually here", but I find it easy enough to do that in the containing class doc string.


You cite the PEP257: Docstring Conventions, in the section What is a docstring it is stated:

String literals occurring elsewhere in Python code may also act as documentation. They are not recognized by the Python bytecode compiler and are not accessible as runtime object attributes (i.e. not assigned to __doc__), but two types of extra docstrings may be extracted by software tools:

String literals occurring immediately after a simple assignment at the top level of a module, class, or __init__ method are called "attribute docstrings".

And this is explained in more details in PEP 258: Attribute docstrings.As explains above ʇsәɹoɈ.an attribute is not an object that can own a __doc__ so they won't appear in help() or pydoc. These docstrings can only be used for generated documentation.

They are used in Sphinx with the directive autoattribute

Sphinx can use comments on a line before an assignment or a special comment following an assignment or a docstring after the definition which will be autodocumented.


You could abuse properties to this effect. Properties contain a getter, a setter, a deleter, and a docstring. Naively, this would get very verbose:

class C:    def __init__(self):        self._x = None    @property    def x(self):        """Docstring goes here."""        return self._x    @x.setter    def x(self, value):        self._x = value    @x.deleter    def x(self):        del self._x

Then you will have a docstring belonging to C.x:

In [24]: print(C.x.__doc__)Docstring goes here.

To do this for many attributes is cumbersome, but you could envision a helper function myprop:

def myprop(x, doc):    def getx(self):        return getattr(self, '_' + x)    def setx(self, val):        setattr(self, '_' + x, val)    def delx(self):        delattr(self, '_' + x)    return property(getx, setx, delx, doc)class C:    a = myprop("a", "Hi, I'm A!")    b = myprop("b", "Hi, I'm B!")In [44]: c = C()In [46]: c.b = 42In [47]: c.bOut[47]: 42In [49]: print(C.b.__doc__)Hi, I'm B!

Then, calling Pythons interactive help will give:

Help on class C in module __main__:class C |  Data descriptors defined here: |   |  a |      Hi, I'm A! |   |  b |      Hi, I'm B!

which I think should be pretty much what you're after.

Edit: I realise now that we can perhaps avoid to need to pass the first argument to myprop at all, because the internal name doesn't matter. If subsequent calls of myprop can somehow communicate with each other, it could automatically decide upon a long and unlikely internal attribute name. I'm sure there are ways to implement this, but I'm not sure if they're worth it.