Python Forum

Full Version: Adding a new endpoint to pdoc3
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am using pdoc3 to generate documentation for my module. I prefer to run it as a http site. This is how I do it:

$ pdoc --http localhost:8080 MODULENAME


This runs a server with endpoints to all the components of the module. I'd like to add a new endpoint to this server. How do I do that?