What ide is good for developing PyQt apps?
I'm using the pydev extension to Eclipse for Python development. Snappy, works in Windows and Linux, pretty nice debugger (comparable to the Eclipse Java IDE debugger). The code completion is able to tie into the PyQt modules as well.
If you're referring to writing .ui files, the Qt Designer that comes with PyQt is sufficient for layout of widgets, and pyuic4 will convert them to Python code for you (pyuic4 comes with PyQt).
I'm using the pydev extension to Eclipse for Python development. Snappy, works in Windows and Linux, pretty nice debugger (comparable to the Eclipse Java IDE debugger). The code completion is able to tie into the PyQt modules as well.
PyQT can be a hassle to setup in Eclipse but when it is set up it works pretty nicely! There is a guide at popdevelop that shows you how to setup Eclipse in Windows to work with PyQT, with code completion and all.