Re: [google-appengine] Share data among a suite of GAE apps

2010-08-03 Thread djidjadji
Upload the suites as different versions of the app.
Also take a look at the Terms of Service. You offer services with
similar purpose/kind to a group of users.

2010/7/30 slowpoison verma...@gmail.com:
 I'm currently working on a suite of apps, that will all share data
 amongst themselves - mainly the user data. Is there a way to do this
 using the datastore API?

 Imagine a mail application and a calendar application. I'd like to
 keep the apps separate but share a single User entity kind between
 them. Possible? How?

 --
 You received this message because you are subscribed to the Google Groups 
 Google App Engine group.
 To post to this group, send email to google-appeng...@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-appengine+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-appengine?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Share data among a suite of GAE apps

2010-08-03 Thread Alon Carmel
there was a similare discussion here about uploading bunch of websites that
connect to each other, its violating the terms of use if you try todo that
inorder to avoid quota. its ok for websites to communicate with each other
thru http.
i wrote a custom api for my self that i use for bunch of webapps to
communicate together like google wave robot and my webapp.
-
Cheers,

def AlonCarmel(request)
 import simplejson as json
 contact = {}
 contant['email'] = 'a...@aloncarmel.me'
 contact['twitter'] = '@aloncarmel'
 contact['web'] = 'http://aloncarmel.me'
 contact['phone'] = '+972-54-4860380'
 return HttpResponse(json.dumps(contact))

* If you received an unsolicited email from by mistake that wasn't of your
matter please delete immediately. All E-mail sent from Alon Carmel is
copyrighted to Alon Carmel 2008. Any details revealed in e-mails sent by
Alon Carmel are owned by the Author only. Any attempt to duplicate or
imitate any of the Content is prohibited under copyright law 2008.



On Tue, Aug 3, 2010 at 3:01 PM, djidjadji djidja...@gmail.com wrote:

 Upload the suites as different versions of the app.
 Also take a look at the Terms of Service. You offer services with
 similar purpose/kind to a group of users.

 2010/7/30 slowpoison verma...@gmail.com:
  I'm currently working on a suite of apps, that will all share data
  amongst themselves - mainly the user data. Is there a way to do this
  using the datastore API?
 
  Imagine a mail application and a calendar application. I'd like to
  keep the apps separate but share a single User entity kind between
  them. Possible? How?
 
  --
  You received this message because you are subscribed to the Google Groups
 Google App Engine group.
  To post to this group, send email to google-appeng...@googlegroups.com.
  To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
  For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.
 
 

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appeng...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Share data among a suite of GAE apps

2010-08-02 Thread Alon Carmel
Using the /remote_api you can access remote datastores.

I suggest creating one major app that holds the datastore and the rest
access the models over http using remote_api.
read about it.
-
Cheers,

def AlonCarmel(request)
 import simplejson as json
 contact = {}
 contant['email'] = 'a...@aloncarmel.me'
 contact['twitter'] = '@aloncarmel'
 contact['web'] = 'http://aloncarmel.me'
 contact['phone'] = '+972-54-4860380'
 return HttpResponse(json.dumps(contact))

* If you received an unsolicited email from by mistake that wasn't of your
matter please delete immediately. All E-mail sent from Alon Carmel is
copyrighted to Alon Carmel 2008. Any details revealed in e-mails sent by
Alon Carmel are owned by the Author only. Any attempt to duplicate or
imitate any of the Content is prohibited under copyright law 2008.



On Fri, Jul 30, 2010 at 10:23 PM, slowpoison verma...@gmail.com wrote:

 I'm currently working on a suite of apps, that will all share data
 amongst themselves - mainly the user data. Is there a way to do this
 using the datastore API?

 Imagine a mail application and a calendar application. I'd like to
 keep the apps separate but share a single User entity kind between
 them. Possible? How?

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appeng...@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appeng...@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.