Which editor / IDE is best for editing Python scripts for the Google App Engine?

Which editor or IDE do you use when editing Python scripts? Especially when you work in Google App Engine.

Do you know any editor / IDE that supports syntax highlighting and autocomplete modules of Google App Engine modules?

Thanks in advance for any suggestion.

+4
source share
5 answers

I heard very good things about PyCharm , although I have not used it personally (I prefer the plain old vim).

I know people who like WingWare and PyDev .

I suggest you try them and see what you like.

+3
source

PyDev on Eclipse will support partial code completion using GAE.

http://pydev.org/

http://www.eclipse.org/

+3
source

Not only did I successfully get the code to complete (and "go to the definition") while working on WingIDE, but I was also able to run the local SDK through its debugger. See http://wingware.com/doc/howtos/google-app-engine , and also Is there a way to check the execution for django applications? (Any IDE that does this?)

+3
source

Eclipse with the official google appenine plugin and pydev plugin.

+1
source

I am editing Gedit , drPython and eric using hg for version control.

+1
source

Source: https://habr.com/ru/post/1334616/


All Articles