tags:

views:

351

answers:

4
+3  Q: 

Komodo Extension

Continuing on with my Python learning, I just installed Komodo edit, are there any recommended add ins/extensions that I should include? Any recommendations on using it or another GUI designer (TkInter base)?

A: 

Komodo edit is just a text editor.

For gui design I suggest Glade-3. It is specially juicy.

nosklo
+1  A: 

Komodo extension: Tab trigger for Abbreviations (http://community.activestate.com/xpi/tab-abbreviations). Can't live without it anymore.

pboucher
+1  A: 

try using eclipse instead with PyDev.

jacob
+1  A: 

If you want to use Komodo, integrate it with Pylint as stated here (I do not know if it works with Komodo Edit, I have run it with Komodo then). It is a code checker, very useful for dynamic language like Python.

Also, there is GUI Builder, which is not an "add-in" but "add-out", it was already part of the Komodo, but it has been released as open source.

Caglar Toklu