我想知道是否有可能/允许在两个应用程序之间共享一个实体,例如一个应用程序创建并存储实体,然后第二个从第一个获取密钥,然后可以访问该实体?Second.py 是否需要在其中包含 Ent 类信息,还是仅通过拥有对象就知道有关 Ent 的所有信息?
首先.py:
class Ent(db.model):
def stuff():
print "I belong to first"
class out(webapp2.RequestHandler):
def get():
e = Ent()
key = e.put()
return key
第二个.py:
class in(webapp2.RequestHandler):
response = urllib2.urlopen(urlOfFirstApp)
ent = #access BigTable with response/key, I'm not sure how to do this or if I can or if I'm allowed to
ent.stuff()