Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python editor with automatic code completion? [closed]

I have seen various articles about good Python editors/IDEs, like this. However, none of them points out whether the editors support automatic code completion. I tried notepad++, PyScript and Komodo Edit, but all of these requires a hotkey to invoke the code completion dialog.

Do you know any Python editors with automatic code completion?

like image 596
netvope Avatar asked Jul 21 '26 11:07

netvope


2 Answers

This SO question shows how to do it with vim/gvim, eclipse/pydev, IDLE, wingware -- however no answer is clear about the "automatic" part (which would of course still require confirmation, since there's never an absolute certainty!-).

like image 83
Alex Martelli Avatar answered Jul 23 '26 23:07

Alex Martelli


Eclipse with pydev extension should work.

like image 35
yesraaj Avatar answered Jul 24 '26 01:07

yesraaj