Top "Pydoc" questions

Pydoc is a documentation module for the programming language Python.

How do I create documentation with Pydoc?

I'm trying to create a document out of my module. I used pydoc from the command-line in Windows 7 using Python 3.2.3: …

python documentation python-3.x documentation-generation pydoc
What does the Pydoc module do?

New to programming and python altogether. In the book I'm learning from, the author suggested I find out the purpose …

python terminal pydoc
How to comment parameters for pydoc

Is there a way to comment the parameters of a function to make them recognized by the pydoc library ? i.…

python parameters comments pydoc
Relative imports require the 'package' argument

I want to use Sphinx so it can automatically generate a pydoc for my python code but I'm getting an …

python django python-sphinx pydoc
How to get pydoc command working in Windows?

pydoc does not work in Windows. at this post Pydoc is not working (Windows XP) the last answer by dave …

python command-line command pydoc
How to generate documentation using Pydoc

I need to generate documentation from comments using pydoc. What are the basic steps to do that?

python documentation pydoc
How to tell PyDoc to generate documentation to user defined directory

PyDoc creates HTML documentation in current directory when generating documentation of modules. I really need to specify another directory which …

python pydoc
How do I export the output of Python's built-in help() function

I've got a python package which outputs considerable help text from: help(package) I would like to export this help …

python pydoc
Display pydoc's description as part of argparse '--help'

I am using argparse.ArgumentParser() in my script, I would like to display the pydoc description of my script as …

python argparse pydoc
Pydoc not seeing docstrings?

Obviously I am missing something serious here. Here is my test program: """ Doc and nothing but doc """ class TestMe(object): """ …

python pydoc