https://developers.google.com/appengine/articles/remote_api

In the link above, they have discussed the use of remote_api with the help 
of a sample code of guestbook app as shown below.


>>> import helloworld
>>> from google.appengine.ext import db

>>> # Fetch the most recent 10 guestbook entries
>>> entries = helloworld.Greeting.all().order("-date").fetch(10)
>>>
>>> # Create our own guestbook entry
>>> helloworld.Greeting(content="A greeting").put()


But as per the basic python tutorials, guestbook and helloworld are two 
different apps. How could they access helloworld from guestbook app and how 
the statement helloworld.Greeting is valid??

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to