4
我最近下載IMDbpy模塊.. 當我這樣做,閱讀Python文檔的第三方模塊
import imdb
help(imdb)
我沒有得到完整的文件。我需要做的
im = imdb.IMDb()
help(im)
看可用的方法。我不喜歡這個控制檯界面。有沒有更好的閱讀文檔的方法。我的意思是所有與模塊imdb在一個頁面中的文檔。。
我最近下載IMDbpy模塊.. 當我這樣做,閱讀Python文檔的第三方模塊
import imdb
help(imdb)
我沒有得到完整的文件。我需要做的
im = imdb.IMDb()
help(im)
看可用的方法。我不喜歡這個控制檯界面。有沒有更好的閱讀文檔的方法。我的意思是所有與模塊imdb在一個頁面中的文檔。。
使用pydoc
pydoc -w imdb
,這將產生在同一目錄imdb.html。
pydoc -p 9090
將在端口9090啓動一個HTTP服務器,你就可以瀏覽所有文件在http://localhost:9090/
在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 >
我試過..但是,仍然我沒有得到doc中的「im」方法html –
我仍然沒有在文檔中獲得「im」的方法..爲什麼答案是upvoted ...? –
你嘗試過'pydoc -p'嗎? –