We are new to the python world and would like to get started a s soon a possible and develop a little web app for app engine. We are using Eclipse + Google plugin + Pydev.
We also would like to start using Django framework and we have two questions:
1. We are looking for a good tutorial which will put us on the right track with Django + app engine?
2. We are looking for a dev tool, apperently Eclipse with Pydev support either Django project or App engine project but not together, is there any other IDE which can solve this problem?
The AppEngine documentation has a section about django integration, it could be useful as a start point. There are also several other articles around the web about this topic, just google
django appengine.Regarding the IDE, i’d suggest using PyCharm, it’s not free, but it has great integration for
appengineandDjango(even both together), and is a great IDE.EDIT:
Here is a tutorial that looks nice, i used another tutorial from this guy to create an
appengineproject using theFlaskframework, and it was really useful.