Python documentation in Eclipse

Is there a way to integrate standard Python documentation into Eclipse? This way, you can press F1 on the API function and get its description in the Eclipse help window.

I am using PyDev.

Thanks.

+8
python eclipse pydev
source share
4 answers

I had the same problem, so I made an Eclipse plugin for this.

Or download from Sourceforge

+7
source share

PyDev, nor Eclipse, provides on-line help for Python documentation. Unlike Java, Python API source code documentation has several competing documentation standards and their support will be complex.

However, if the function under the cursor can be enabled, its docstring is displayed in a popup.

http://www.python.org/dev/peps/pep-0257/

Also, since Python is a dynamic language, unlike static languages ​​such as Java, you rarely can enable functions for your source during code development.

Using the Python console debugger, you can use the help () command when starting the application

>>> help(obj.myfuction) 
+4
source share

No, which I know about, but that would be very useful in pydev. You must offer it in the eclipse pydev forum or program it yourself! If I were still a CS student, I would help ..

+1
source share

Zeal - https://zealdocs.org/

Although I don’t see how to integrate it into Eclipse, it is very useful next to it on your desktop. And these are not only Python documents, but more. Real life-saving stuff, these Zeal docs!


Just a note: I do not use Eclipse as much as I switched to PyCharm and Jupyther.

0
source share

All Articles