Open
Description
PyDoc is wonderful! I had it up and running in minutes, and it produced beautiful docs.
But I hit an issue. We would like to use this both for docs for our developer team, as well as producing external-facing documentation. If we want to include private identifiers in our docs, we have to update add a __pdoc__
to every file. But...if we want to produce user-facing docs, we would have to remove that.
It would be really nice if there was a command-line flag to say "include all private identifiers."
Since pdoc3 is so procedural (and not class/hierarchy based) it appears this would require quite the re-architecting of the project.