阅读第三方模块的Python文档

时间:2010-03-13 09:30:01

标签: python documentation pydoc imdbpy

我最近下载了IMDbpy模块.. 当我这样做时,

import imdb
help(imdb)

我没有得到完整的文档..我必须做

im = imdb.IMDb()
help(im)

查看可用的方法。我不喜欢这个控制台界面。有没有更好的阅读文档的方法。我的意思是所有与模块imdb在一个页面中相关的文档。

2 个答案:

答案 0 :(得分:10)

使用pydoc

pydoc -w imdb

这将在同一目录中生成imdb.html。


pydoc -p 9090将在端口9090上启动HTTP服务器,您将能够在http://localhost:9090/浏览所有文档

答案 1 :(得分:1)

你可以IPython中的

[1]: import os
[2]: os?

< get the full documentation here >

# or you could do it on specific functions 
[3]: os.uname
<built-in function>



[4]: os.uname?

< get the full documentation here >


# Incase of modules written in python, you could inspect source code by doing
[5]: import string
[6]: string??

< hows the source code of the module >

[7]: string.upper??

< shows the source code of the function >