Hi all!
I have started using pydoc and can not figure it all out...
I have made packages in a structure like:
pkg1
-__init__.py
-pkg2
--__init__.py
--module1
--module2
(supposed to look like a dir structure, hope you see what I mean)
If my working dir is dir that contains pkg1 dir I use command:
pydoc -w pkg1
That gives me a html called pkg1.html that shows me that there is a subpackage named pkg2 that is a href, this href point to pkg1.pkg2.html in the same dir. This page does not exists and is never created by pydoc.
Isn't pydoc supposed to work similar to javadoc?
If I point to the package pkg1 isn't pydoc supposed to create html files for modules, submodules and subpackages as well?
Am I supposed to make the hrefs right by my self and run pydoc command in every package?
I think that I am missing something or isn't this functionality included in pydoc?
Many, many thanks for the help!
Marcux