Reading Python Documentation for 3rd party modules
Posted
by Shadyabhi
on Stack Overflow
See other posts from Stack Overflow
or by Shadyabhi
Published on 2010-03-13T09:30:01Z
Indexed on
2010/03/13
9:35 UTC
Read the original article
Hit count: 360
python
|documentation
I recently downloaded IMDbpy moduele.. When I do,
import imdb
help(imdb)
i dont get the full documentation.. I have to do
im = imdb.IMDb()
help(im)
to see the available methods. I dont like this console interface. Is there any better way of reading the doc. I mean all the doc related to module imdb in one page..
© Stack Overflow or respective owner