Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is python site manual totally generated by pydoc?

Tags:

python

pydoc

I tried pydoc to some internal package but the output html is far different from the site version. So I wondered how to generate the doc just like the site document. Or there has to be done by manually tweak and edit

thanks a lot

like image 223
davyzhang Avatar asked Feb 28 '12 05:02

davyzhang


2 Answers

the python site doc is generated using Sphinx Look here

You can see the line 'Created using Sphinx 1.0.7. ' written at end of http://docs.python.org/index.html page

like image 70
avasal Avatar answered Nov 05 '22 14:11

avasal


Yes python doc is created from sphinx you can check the "Project Using Sphinx" https://www.sphinx-doc.org/en/master/examples.html.

like image 44
Nilesh Avatar answered Nov 05 '22 15:11

Nilesh