0

It would be an enormous security flaw if it does.

Proposed method:

entity = db.get(key)

source: http://code.google.com/appengine/docs/python/datastore/creatinggettinganddeletingdata.html#Getting_an_Entity_Using_a_Key

David Underhill
  • 15,896
  • 7
  • 53
  • 61
Jader Dias
  • 88,211
  • 155
  • 421
  • 625

2 Answers2

3

No you cannot, unless there is a particular bug you have discovered. Is there any particular reason you think it is possible? This seems fairly easy to test, if you are worried about it. Just create two apps and try to access data from app A from app B.

Peter Recore
  • 14,037
  • 4
  • 42
  • 62
3

No. But you could do it using remote_api (and with the permission of the other app's owner).

Nick Johnson
  • 100,655
  • 16
  • 128
  • 198