Hi Eugene, The first option comes to mind is the Remote API. For more details, please read: https://developers.google.com/appengine/docs/python/tools/remoteapi
Re: using PyMongo on App Engine I don't think you can use the current PyMongo module because it includes some c code. With the python2.7 runtime, we only provide limited set of modules with c code as described bellow: https://developers.google.com/appengine/docs/python/tools/libraries27 However, in the future, it might be possible for you to use MongoDB directly from App Engine with a use of the socket API, if we provide PyMongo module. So maybe you want to file a feature request to provide PyMongo module with the Python2.7 runtime. For the socket API, now we're accepting trusted tester for the socket API. Please see this thread: https://groups.google.com/d/msg/google-appengine/m1x6sDhqx1o/XC2e_kcR_VUJ Thanks, -- Takashi On Sat, Sep 29, 2012 at 8:14 PM, Eugene Y.E <[email protected]> wrote: > Hi all , > > I was wondering if any one have experience in transferring data from > mongodb to google app engine? > Either google's data store, the new NDB or Cloud SQL is fine with me. > > My MongoDB is set up on Amazon EC2 micro instance, and I use PyMongo to > access the data. > > I was wondering if i can install PyMongo on google app engine and access > my data on Amazon EC2 > so that I can save it directly to google app engine? > > Any suggestions are more than welcomed! > > Thanks! > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To view this discussion on the web visit > https://groups.google.com/d/msg/google-appengine/-/8gv1vLLggF8J. > 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. > -- Takashi Matsuo | Developers Advocate | [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.
