4

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

import imdb
help(imdb)

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

im = imdb.IMDb()
help(im)

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

4

2 回答 2

10

使用pydoc

pydoc -w imdb

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


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

于 2010-03-13T09:37:08.447 回答
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 >
于 2010-03-13T17:30:39.937 回答