1This Python handler for the "mkdocstrings" package uses Griffe 2(= textproc/py-griffe) to collect documentation from Python source code. 3 4Features: 5 6* Data collection from source code: collection of the object-tree and the 7 docstrings is done thanks to Griffe. 8 9* Support for type annotations: Griffe collects your type annotations and 10 mkdocstrings uses them to display parameter types or return types. 11 12* Recursive documentation of Python objects: just use the module dotted-path as 13 an identifier, and you get the full module docs. You don't need to inject 14 documentation for each class, function, etc. 15 16* Support for documented attributes: attributes (variables) followed by a 17 docstring (triple-quoted string) will be recognized by Griffe in modules, 18 classes and even in __init__ methods. 19 20* Multiple docstring-styles support: common support for Google-style, 21 Numpydoc-style, and Sphinx-style docstrings. See Griffe's documentation on 22 docstrings support. 23