DEV Community

Cover image for How To Write Your Own Python Documentation Generator
Cristian Medina
Cristian Medina

Posted on • Originally published at tryexceptpass.org on

How To Write Your Own Python Documentation Generator

Introspection with the inspect module

In my early days with Python, one of the things that I really liked was using the built-in help function to examine classes and methods while sitting at the interpreter, trying to determine what to type next. This function imports an object and walks through its members, pulling out docstrings and generating manpage-like output to help give you an idea of how to use the object it was examining.

The beauty about it being built into the standard library is that with output being generated straight from code, it indirectly emphasizes a coding style for lazy people like me, who want to do as little extra work as possible to maintain documentation. Especially if you already choose straight forward names for your variables and functions. This style involves things like adding docstrings to your functions and classes, as well as properly identifying private and protected members by prefixing them with underscores.

Read on ...

Top comments (0)