I\'ve been building a Python module with many different functions.
I\'m using Sphinx and readthedocs to provide documentation. I\'ve made decent progress, but curre
I think the sphinx-automodapi Sphinx extension may do what you need. Essentially to document a module you would just do:
.. automodapi:: mypackage.mymodule
and it will generate the table and individual pages for each function.
Disclaimer: I am an author of sphinx-automodapi