Skip to content Skip to sidebar Skip to footer

Best Opensource Ide For Building Applications On Google App Engine?

Looking to dabble with GAE and python, and I'd like to know what are some of the best tools for this - thanks!

Solution 1:

I would spend the time and learn something like emacs. The learning curve is a bit higher, but once you get used to it, you can develop from any terminal. It has fantastic support for python and many other libraries.

You have to remember that Python is a dynamically typed language so the traditional IDE is not really the answer since those are mostly designed for statically typed languages. Basically you want something that has syntax highlighting, compilation and maybe some shortcuts and macros to make life easier for you... emacs has all of this :)

I would Google "Emacs Python" to get started.

If you really don't want to use emacs, I would look at PyDev. It's an extension to the eclipse IDE that let's you write python code. Some of my friends that do Django work have had good luck with that one.

Hope this helps.

Good luck with GAE.

Solution 2:

Netbeans has some very nice tools for Python development

Solution 3:

VIM(there's enough plug-ins to make it IDE -like)

Komodo IDE($$)

Eclipse w/Pydev

Net Beans with Python support

WingIDE($$)

SPE(Stani's Python Editor)

Solution 4:

Solution 5:

I've been using gedit and am pretty happy with it, there is a couple of good plugins that make life easier (e.g. Class Browser). I tried eclipse but its just not the same experience you get with Java.

Post a Comment for "Best Opensource Ide For Building Applications On Google App Engine?"