Is there any way to search for a perticular package/function using keywords in python console...
for example i may want to search "pdf" for pdf related tasks.
|
|
Is there any way to search for a perticular package/function using keywords in python console... for example i may want to search "pdf" for pdf related tasks.
|
||||
|
|
|
The
From a terminal, run..
..for example:
It doesn't search the contents of the documentation, but it searches all module names - if that's not enough, I'd suggest using Google or StackOverflow to search for "Python PDF module" or similar |
||
|
|
|
|
You can use help to access the docstrings of the different modules you have imported, e.g., try the following:
and you'll get an error,
and you will get a list of the available methods in the module, but only AFTER you have imported it. It also works with individual functions, e.g. after importing math try:
To deal with pdf you will probably have to install a third party module. A quick search has led me to this result, which I haven't tried: http://www.devshed.com/c/a/Python/Python-for-PDF-Generation/ |
||
|
|
|
|
help( "modules")
|
||
|
|
|
|
To search PyPI (Python Package Index) package info locally, try
Notes: the pypi-grepfile has only one version per package, the newest;
multiline summaries are folded to one long line
(which I chop with
The data comes from http://pypi.python.org/pypi xmlrpc, but beware: some packages in list_packages have no package_releases or no releasedata, and a few releasedatas timeout (timeout_xmlrpclib); what you see is All you get. Feedback is welcome. |
||
|
|
|
In console type help(object):
Unfortunatelly there is no help for pdf:
As paffnucy said try searching internet (SO works wery well :) This site can be helpful as well: http://www.gotapi.com/python |
||
|
|
|
|
Try Docs: http://docs.python.org/library/functions.html#help http://docs.python.org/library/functions.html#dir EDIT:
You have to have main python dir in your path. And it won't work under IDLE. HTH. |
|||
|