views:

239

answers:

6

What editors or IDEs offer decent autocompletion for wxPython on Windows or Linux? Are there any? I tried several and support is either non-existant or limited.

A: 

try use brain to autocomplete... :)

just joking. when I coding in in PyQt4, I open qt-assistant and search the manual, and wrap myclass like : MyButton = QPusuButton

I think it is impossible to use autocomplete in python, because only in runtime the computer know what happens.

linjunhalida
It's definitely not impossible. NetBeans, Eclipse with PyDev, and Komodo Edit do a good job at autocompletion within the standard library.
Grant
+1  A: 

I use Ulipad, and its has good autocompletion for wxPython too.

S.Mark
+1  A: 

Wingide can do it

gnibbler
A: 

Whatever the default windows IDE for Python is can autocomplete, with code not from the standard library.

Richo
+1  A: 

I use Eclipse/PyDev for wxPython development. I've been very satisfied with Eclipse for Python development productivity. It does have support for autocompletion for wxPython.

curious
+1  A: 

Eclipse+PyDev with the install directory for wxPython added to the PythonPath has fully functioning autocomplete. Pydev

Urthwhyte