When I invoke pdoc3 with pdoc3 py_athletics.py I get documentation for py_athletics.py only and not for the other modules. py_athletics.py imports, directly, or indirectly, all of the other modules. What do I need to do for pdoc3 to traverse the structure and render documentation for all of the py files?
I am new to Python and very new to pdoc3. I have arranged my code in the following tree.
When I invoke pdoc3 with
pdoc3 py_athletics.py
I get documentation for py_athletics.py only and not for the other modules. py_athletics.py imports, directly, or indirectly, all of the other modules. What do I need to do for pdoc3 to traverse the structure and render documentation for all of the py files?