阅读第三方模块的 Python 文档
我最近下载了 IMDbpy 模块.. 当我这样做时,
import imdb
help(imdb)
我没有得到完整的文档。我必须做
im = imdb.IMDb()
help(im)
才能看到可用的方法。我不喜欢这个控制台界面。有没有更好的方法来阅读文档。我的意思是与 模块 imdb 相关的所有文档都在一页中。。
I recently downloaded IMDbpy module..
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..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 pydoc
这将在同一目录中生成 imdb.html。
pydoc -p 9090
将在端口 9090 上启动 HTTP 服务器,您将能够浏览 处的所有文档http://localhost:9090/Use pydoc
This will generate imdb.html in the same directory.
pydoc -p 9090
will start a HTTP server on port 9090, and you will be able to browse all documentation at http://localhost:9090/在 IPython 中你可以这样做
in IPython you could do