What tools do you use to auto-generate api docs in python packages?
What do you use for source code documentation?
Sphinx is not as manual as you think it is.
e.g. a module rst file stub and the rest inside your sourcecode will generate complete API docs
More on reddit.comProject Guide: AI-Powered Documentation Generator for Codebases
RESTful/JSON web frameworks with documentation generation?
I don't know of anything that does exactly what you are looking for. I haven't used it myself but GOA https://github.com/goadesign/goa apparently has a DSL that you design that generates a swagger spec for you, as well as some code generation. That is the closest I know of.
More on reddit.comHey,
I've been lately writing Declarai, an open-source llm-related library.
The need for a clear API reference documentation came fast and I started looking for good auto-generate documentation tools.
Up until now, I found mkdocstrings the best choice as im using mkdocs anyhow.
Do you guys aware of any other great tools for api documentation auto-generation ?