I am trying to generate documentation for my python project with pdoc
module by following this article.
I noticed that all the classes, methods, etc starting with __
(private/protected ones) are missing in the generated documentation.
This is the sample.py
class __Members:
def __test():
pass
class seedoc:
''' see me '''
pass
This is how I generated the documentation with pdoc
$pdoc --html sample.py
html/sample.html
I see only public class in the generated documentation as per this screenshot:
Can someone please help me figure out a way to get over this limitation and generate the documentation with all the private/protected members? Thanks in advance.
Pdoc only extracts public API members (not prefixed with an underscore) by convention.
You may be able to override this behavior, on a module level, by defining
__all__
, or, more generally, by specifying overrides in the__pdoc__
dict, either manually for a few members, or automatically yet hackish, somewhat like:Alternatively, you should just rename your members if they are part of your public API.
Also note, Python by default defines dozens of dunder members on objects, most of which have standard meaning or are internal: