On Thu, Sep 11, 2008 at 10:26 PM, Boern <[EMAIL PROTECTED]> wrote: > > hi all: > I am a newie for GAE,now I want to migrate my web app that`s based > on pylons > and orm based on sqlalchemy to GAE,how I to do ? > The GAE can support pylons?
Pylons works on App Engine. SQL databases don't, so you'd have to convert your model to Datastore, which can be quite a paradigm shift. There's a third-party package that puts a SQL layer on top of Datastore but I've forgotten what it's called. In any case, you should learn native Datastore if you're going to use App Engine. For Pylons, it's easiest to use the appengine-monkey to install it (http://code.google.com/p/appengine-monkey/). The instructions haven't been updated in a while, so when it says "the development version of Mako" and "the development version of Beaker", you can now use the stable versions. The file-exclusion regex isn't quite right; I've got a better one in my notes which I've been meaning to write up but in the meantime I can send it to you if you email me privately. -- Mike Orr <[EMAIL PROTECTED]> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en -~----------~----~----~----~------~----~------~--~---
