Python and Google App Engine Development Resources

I would like to ask about some sources for developing applications with Python and Google App Engine.

For example, some controls to automatically create pages with insert / update / delete database table or any other useful resources are welcome.

Thank!

+2


source to share


3 answers


The Python community tends to look at code generation; so, @Hoang, if you think code generation is the way to go, I suggest you try just about any other language but Python.

@Dominic has already suggested some great resources, I could point you to more (App Engine Fan, App Engine utilities, etc etc) but they are all based on the Pythonic mindset: understand what you need and what you can do, wrap as much as possible in reusable components, reuse those components from your own sources.



You want magic, wizards and code generation that basically excused you (in theory) from LEARNING AND UNDERSTANDING: giving up Python is not a language that ,

+7


source


Google's Getting Started tutorial is very good. The django documentation is also very detailed. Take a look at GoogleIO on YouTube and see some of the tutorials.



+3


source


App Engine Documentation http://code.google.com/appengine/docs/

App Engine Google Group http://groups.google.com/group/google-appengine

Google Video Conferencing I / O http://code.google.com/events/io/

App Engine Poker Book http://appengine-cookbook.appspot.com/

and of course stackoverflow

+2


source







All Articles