4

最近IMDbpyモジュールをダウンロードしました。ダウンロードすると、

import imdb
help(imdb)

私は完全なドキュメントを取得しません..私はしなければなりません

im = imdb.IMDb()
help(im)

利用可能なメソッドを確認します。私はこのコンソールインターフェースが好きではありません。ドキュメントを読むためのより良い方法はありますか?モジュールimdbに関連するすべてのドキュメントを1ページにまとめたものです。。

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 に答える