Ok, so I’ve read both PEP 8 and PEP 257, and I’ve written lots of docstrings for functions and classes, but I’m a little unsure about what should go in a module docstring. I figured, at a minimum, it should document the functions and classes that the module exports, but I’ve also seen a few modules that list author names, copyright information, etc. Does anyone have an example of how a good python docstring should be structured?
Share
Think about somebody doing
help(yourmodule)at the interactive interpreter’s prompt — what do they want to know? (Other methods of extracting and displaying the information are roughly equivalent tohelpin terms of amount of information). So if you have inx.py:then:
shows:
As you see, the detailed information on the classes (and functions too, though I’m not showing one here) is already included from those components’ docstrings; the module’s own docstring should describe them very summarily (if at all) and rather concentrate on a concise summary of what the module as a whole can do for you, ideally with some doctested examples (just like functions and classes ideally should have doctested examples in their docstrings).
I don’t see how metadata such as author name and copyright / license helps the module’s user — it can rather go in comments, since it could help somebody considering whether or not to reuse or modify the module.