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 comma
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.