Sphinx Generates Empty Documentation
I'm trying to generate documentation for my project with Sphinx, but the output documentation doesn't contain any of my classes. What am I doing wrong? Below are the commands I use
Solution 1:
You need to run the sphinx-apidoc
command on your project to automatically generate the .rst
files corresponding to your Python modules. These will then be used by the autodoc
extension to actually generate the documentation.
Post a Comment for "Sphinx Generates Empty Documentation"