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.