I have tried app engine for my small quake watch application
http://quakewatch.appspot.com/
my purpose was to see the capabilities of app engine
so here are the main points
1> it doesn't come by default with django, it has its own web framework which is pythonic has URL dispatcher like django and it uses django templates
So if you have django exp. you will find it easy to use
2> But you can use any pure python framework and django can be easily added see
http://code.google.com/appengine/articles/django.html
google-app-engine-django (http://code.google.com/p/google-app-engine-django/) project is excellent and works almost like working on a django project
3>You can not execute any long running process on server, what you do is reply to request and which should be quick otherwise appengine will kill it
So if your app needs lots of backend processing appengine is not the best way
otherwise you will have to do processing on a server of your own
4> My quakewatch app has a subscription feature, it means I had to email latest quakes as they happend, but I can not run a background process in app engine to monitor new quakes
solution here is to use a third part service like pingablity.com which can connect to one of your page and which executes the subscription emailer
but here also you will have to take care that you don't spend much time here
or break task into several pieces
- It provides Django like modeling capabilities but backend is totally different but for a new project it should not matter.
But overall i think it is excellent for creating apps which doesn't need lot of background processing.
Edit:
Now task queues can be used for running batch processing or scheduled tasks