[google-appengine] Re: large imports/exports

2009-03-14 Thread Let Delete My Apps

No I haven't.

On Mar 13, 10:46 pm, Amr Ellafi amrl...@gmail.com wrote:
 really , great ! have you sliced your data or did the upload at once ??

 On Fri, Mar 13, 2009 at 10:47 PM, Let Delete My Apps

 davide.rogn...@gmail.com wrote:

  I've imported 87811 records using bulkload_client.py
  .
  .
  .
  On Mar 13, 7:53 pm, Ronn Ross ronn.r...@gmail.com wrote:
  Do you know if there's an easy way to do large imports/exports of data as
  needed for Google Appengine?
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: Customize Over Quota Page

2009-03-14 Thread Let Delete My Apps

Ok :-)

User Feature Request
http://code.google.com/p/googleappengine/issues/detail?id=1145q=customizecolspec=ID%20Type%20Status%20Priority%20Stars%20Owner%20Summary%20Log%20Component
.
.
.
On Mar 13, 9:37 pm, Let Delete My Apps davide.rogn...@gmail.com
wrote:
 Why not?

 On Mar 12, 9:31 pm, Let Delete My Apps davide.rogn...@gmail.com
 wrote:





  Using the JSON/JSONP services is useful this response:

  { errorMsg : Over quota, errorCode : 403 }

  See 
  other:http://groups.google.com/group/google-appengine/browse_thread/thread/...

  Is it possible?
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: The Guardian Open Platform

2009-03-13 Thread Let Delete My Apps

:-(

On Mar 12, 10:26 pm, Let Delete My Apps davide.rogn...@gmail.com
wrote:
 very good -- The Guardian Open 
 Platformhttp://www.guardian.co.uk/open-platform

 openplatform-pythonhttp://code.google.com/p/openplatform-python/

 A simple porting on GAE, is it possible?
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: Un-deploy an application

2009-03-13 Thread Let Delete My Apps

:-(

On Mar 12, 9:39 pm, Let Delete My Apps davide.rogn...@gmail.com
wrote:
 See my last app ;-)http://pyoohtml.appspot.com/let-delete-my-apps/home

 On Mar 12, 6:03 pm, Kegan ke...@kegan.info wrote:

  How do I stop or un-deploy an already deployed and running
  application?

  Also, can I delete a deployed application, so I can free the limited
  application slot ?
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: Customize Over Quota Page

2009-03-13 Thread Let Delete My Apps

Why not?

On Mar 12, 9:31 pm, Let Delete My Apps davide.rogn...@gmail.com
wrote:
 Using the JSON/JSONP services is useful this response:

 { errorMsg : Over quota, errorCode : 403 }

 See 
 other:http://groups.google.com/group/google-appengine/browse_thread/thread/...

 Is it possible?
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: sdk

2009-03-13 Thread Let Delete My Apps

http://localhost:8080/_ah/admin

See:
http://code.google.com/appengine/docs/python/tools/devserver.html

--
http://pyoohtml.appspot.com/let-delete-my-apps/home

On Mar 13, 9:44 pm, Ronn Ross ronn.r...@gmail.com wrote:
 Does the appengine sdk have something included where you can look at the
 datastore? For example I'm having trouble displaying data, and I want to see
 if I writing data to the datastore.
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: ### What is the best way for paginating a list of records? ###

2009-03-12 Thread Let Delete My Apps

I read How-To Do Paging on App Engine and I think it is a complex
approach (low level code).

I would high level code:
query.fetch(1, offset=1001)
.
.
.
On Mar 11, 10:04 pm, Dan Sanderson dansander...@google.com wrote:
 http://code.google.com/appengine/articles/paging.html
 -- Dan

 On Wed, Mar 11, 2009 at 2:00 PM, Let Delete My Apps 

 davide.rogn...@gmail.com wrote:

  What is the best way for paginating a list of records?

  See 30. Object pagination
 http://www.djangoproject.com/documentation/models/pagination/

   from django.core.paginator import Paginator
   paginator = Paginator(Article.objects.all(), 5)
   paginator.count
  9
   paginator.num_pages
  2
   paginator.page_range
  [1, 2]

  --
 http://pyoohtml.appspot.com/let-delete-my-apps/home
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: *** BigTable vs SQLite vs MySQL ***

2009-03-12 Thread Let Delete My Apps

ahahah (thank you :-P

I found Comparing Google App Engine, Amazon SimpleDB and Microsoft
SQL Server Data Services
http://oakleafblog.blogspot.com/2008/04/comparing-google-app-engine-amazon.html
.
.
.
On Mar 12, 6:45 am, David Wilson d...@botanicus.net wrote:
 http://lmgtfy.com/?q=appengine+datastore+documentationl=1

 2009/3/11 Let Delete My Apps davide.rogn...@gmail.com:





  Ok :-)
  Where is your documentation?
  .
  .
  .
  On Mar 10, 4:07 am, Ryan Lamansky spam...@kardax.com wrote:
  The App Engine datastore is pretty slow for individual actions.  It's
  specialty is being able to do those things with 50,000 concurrent
  users.

  -Ryan

  On Mar 9, 4:32 pm, Let Delete My Apps davide.rogn...@gmail.com
  wrote:

   Back to the past:

I planned to migrate a python app ... but my tests on google engine

   was really bad, compare to sqlite or mysql.

  http://groups.google.com/group/google-appengine/browse_thread/thread/...

   Now?
   Does the Comparison Table exists?

   --http://pyoohtml.appspot.com/let-delete-my-apps/home

 --
 It is better to be wrong than to be vague.
   — Freeman Dyson
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] The Guardian Open Platform

2009-03-12 Thread Let Delete My Apps

very good -- The Guardian Open Platform
http://www.guardian.co.uk/open-platform

openplatform-python
http://code.google.com/p/openplatform-python/

A simple porting on GAE, is it possible?

--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: App Engine SDK Cheat Sheet

2009-03-11 Thread Let Delete My Apps

Thanks :-)

On Mar 11, 7:44 pm, John skid...@google.com wrote:
 Hi All,

 Not sure if you saw the blog post this morning, but we created a cheat
 sheet:

 http://googleappengine.googlecode.com/files/google_app_engine_cheat_s...

 We'd love your feedback. Feel free to post it on this thread.

 If you're attending SxSW, please say hello!

 Cheers,

 John
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: Google AdSense on App Engine

2009-03-11 Thread Let Delete My Apps

Yes, thanks.
I think computing resources = money
.
.
.
On Mar 11, 3:10 pm, Dennis Peterson dennisbpeter...@gmail.com wrote:
 I posted a feature request on this...it would be nice to have adsense
 feed directly into app engine fees, so it can all just run itself
 without you bothering with it. Then even a third-world kid with an
 OLPC could build a big site.

 If the adsense revenues fall short, respond to any excess hits with a
 donation page. For the kinds of sites that people feel charitable
 towards, this could work nicely.

 -d

 On Mon, Mar 9, 2009 at 12:40 PM, Ryan Lamansky spam...@kardax.com wrote:

  Yes.

  If you direct both AdSesnse and App Engine to the same bank account,
  it will pay for itself if your advertising income covers your resource
  usage fees.

  -Ryan

  On Mar 8, 12:11 pm, Let Delete My Apps davide.rogn...@gmail.com
  wrote:
  Idea:
  Can I put AdSense on my app to receive additional computing resources,
  instead to receive money?

  I saw:http://www.google.com/services/adsense_tour/index.html
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: *** BigTable vs SQLite vs MySQL ***

2009-03-11 Thread Let Delete My Apps

Ok :-)
Where is your documentation?
.
.
.
On Mar 10, 4:07 am, Ryan Lamansky spam...@kardax.com wrote:
 The App Engine datastore is pretty slow for individual actions.  It's
 specialty is being able to do those things with 50,000 concurrent
 users.

 -Ryan

 On Mar 9, 4:32 pm, Let Delete My Apps davide.rogn...@gmail.com
 wrote:

  Back to the past:

   I planned to migrate a python app ... but my tests on google engine

  was really bad, compare to sqlite or mysql.

 http://groups.google.com/group/google-appengine/browse_thread/thread/...

  Now?
  Does the Comparison Table exists?

  --http://pyoohtml.appspot.com/let-delete-my-apps/home
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] ### What is the best way for paginating a list of records? ###

2009-03-11 Thread Let Delete My Apps

What is the best way for paginating a list of records?

See 30. Object pagination
http://www.djangoproject.com/documentation/models/pagination/

 from django.core.paginator import Paginator
 paginator = Paginator(Article.objects.all(), 5)
 paginator.count
9
 paginator.num_pages
2
 paginator.page_range
[1, 2]

--
http://pyoohtml.appspot.com/let-delete-my-apps/home

--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: ### What is the best way for paginating a list of records? ###

2009-03-11 Thread Let Delete My Apps

Thanks :-)
Now I can not  Rate your post with 5 stars, why?
.
.
.
On Mar 11, 10:04 pm, Dan Sanderson dansander...@google.com wrote:
 http://code.google.com/appengine/articles/paging.html
 -- Dan

 On Wed, Mar 11, 2009 at 2:00 PM, Let Delete My Apps 

 davide.rogn...@gmail.com wrote:

  What is the best way for paginating a list of records?

  See 30. Object pagination
 http://www.djangoproject.com/documentation/models/pagination/

   from django.core.paginator import Paginator
   paginator = Paginator(Article.objects.all(), 5)
   paginator.count
  9
   paginator.num_pages
  2
   paginator.page_range
  [1, 2]

  --
 http://pyoohtml.appspot.com/let-delete-my-apps/home
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: Thanks GAE team

2009-03-11 Thread Let Delete My Apps

Thank you for your work ;-)

On Mar 10, 8:36 pm, cz czer...@gmail.com wrote:
 The datastore seems to be unusually zippy today, whatever you googly
 types did yesterday sure worked. Beautiful!
 thanks,
 - Claude
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: Google AdSense on App Engine

2009-03-09 Thread Let Delete My Apps

:-)
I thinking without a bank insecure account...
.
.
.
On Mar 9, 5:40 pm, Ryan Lamansky spam...@kardax.com wrote:
 Yes.

 If you direct both AdSesnse and App Engine to the same bank account,
 it will pay for itself if your advertising income covers your resource
 usage fees.

 -Ryan

 On Mar 8, 12:11 pm, Let Delete My Apps davide.rogn...@gmail.com
 wrote:

  Idea:
  Can I put AdSense on my app to receive additional computing resources,
  instead to receive money?

  I saw:http://www.google.com/services/adsense_tour/index.html
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: Converting model objects to JSON

2009-03-09 Thread Let Delete My Apps

Wonderful :-)

On Mar 8, 11:02 pm, Bastian Hoyer daf...@gmail.com wrote:
 On 7 Mrz., 23:23, Let Delete My Apps davide.rogn...@gmail.com wrote:

  results = []
  for app in apps:
      results.append({appname : app.appname})

 just a small tip.. you can write this as

 results = [ {appname: app.appname} for app in apps ]
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] *** BigTable vs SQLite vs MySQL ***

2009-03-09 Thread Let Delete My Apps

Back to the past:

 I planned to migrate a python app ... but my tests on google engine
was really bad, compare to sqlite or mysql.

http://groups.google.com/group/google-appengine/browse_thread/thread/b5696cc608bf76f9/afec4fdd936fa3ee?tvc=2q=slow+database#afec4fdd936fa3ee

Now?
Does the Comparison Table exists?

--
http://pyoohtml.appspot.com/let-delete-my-apps/home

--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: BadRequestError: offset may not be above 1000

2009-03-08 Thread Let Delete My Apps

*** The Query Class ***
http://code.google.com/appengine/docs/python/datastore/queryclass.html

-- fetch(limit, offset=0)
offset -- The number of results to skip.

Then?
Why do I see this error?

BadRequestError: offset may not be above 1000
.
.
On Mar 8, 6:06 am, Wooble geoffsp...@gmail.com wrote:
 On Mar 7, 5:05 pm, Let Delete My Apps davide.rogn...@gmail.com
 wrote:

  Hi All,
  I see this error using this code:

  query.fetch(1000, offset=1001)

 RTFM before deleting all of your apps.
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: jQuery while doing Ajax call

2009-03-08 Thread Let Delete My Apps

Hi Ritesh Nadhani,
I think your code is complex.

Can you try another more simple way, for example using the JSON/JSON-P
technique?

View the source code of my last app:
http://pyoohtml.appspot.com/let-delete-my-apps/home
.
.
On Mar 8, 12:49 pm, Ritesh Nadhani rite...@gmail.com wrote:
 Hi

 Any idea what might be wrong with this AJAX AJAX 
 call:http://paste.pocoo.org/show/106941/- its always returning me XMLParse
 error but when done thru my Python client, it works.

 When I just do: response.write(request.raw_post_data) - i get
 var1=value1var2=value2 etc. Rather then the actual XML so the server
 is giving me all kinds of Expat parsing error.

 My code to implement an XML-RPC:http://paste.pocoo.org/show/106945/

 Django code from:http://code.djangoproject.com/wiki/XML-RPC

 --
 Riteshhttp://www.riteshn.com
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: Question: GAE and externally hosted databases

2009-03-08 Thread Let Delete My Apps

I think you could use JSONP
http://www.google.com/search?hl=enq=JSONP+%22cross-site%22btnG=Search
.
.
On Mar 7, 2:13 pm, whichpaul paul.swan...@gmail.com wrote:
 Is it possible to connect to externally hosted databases (eg. mysql
 running on a server outside of the google network) from an application
 running on the GAE?

 I'm currently evaluating GAE for a new web application that I need to
 develop. I'm not convinced that the datastore is right for my needs,
 if I could utilise a relational database hosted elsewhere I might be
 interested.

 Thanks!
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: BadRequestError: offset may not be above 1000

2009-03-08 Thread Let Delete My Apps

Sorry but I do not understand :-(
How can I see the record 2001 ?
.
.
On Mar 8, 2:00 pm, Sharp-Developer.Net
alexander.trakhime...@gmail.com wrote:
 Fromhttp://code.google.com/appengine/docs/python/datastore/queryclass.html
 :

 The datastore fetches offset + limit results to the application. The
 first offset results are not skipped by the datastore itself.
 --
 Alexhttp://sharp-developer.net/

 On Mar 8, 10:56 am, Let Delete My Apps davide.rogn...@gmail.com
 wrote:

  *** The Query Class 
  ***http://code.google.com/appengine/docs/python/datastore/queryclass.html

  -- fetch(limit, offset=0)
  offset -- The number of results to skip.

  Then?
  Why do I see this error?

  BadRequestError: offset may not be above 1000
  .
  .
  On Mar 8, 6:06 am, Wooble geoffsp...@gmail.com wrote:

   On Mar 7, 5:05 pm, Let Delete My Apps davide.rogn...@gmail.com
   wrote:

Hi All,
I see this error using this code:

query.fetch(1000, offset=1001)

   RTFM before deleting all of your apps.
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] App Gallery Error (with start=600)

2009-03-08 Thread Let Delete My Apps

http://appgallery.appspot.com/results?recentapps=truestart=600num=5

Traceback (most recent call last):
  File /base/python_lib/versions/1/google/appengine/ext/webapp/
__init__.py, line 501, in __call__
handler.get(*groups)
  File /base/data/home/apps/appgallery/3.11/appgallery.py, line 398,
in get
apps = query.Get(start + num)[start:]
  File /base/python_lib/versions/1/google/appengine/api/
datastore.py, line 942, in Get
return self._Run(limit, offset)._Next(limit)
  File /base/python_lib/versions/1/google/appengine/api/
datastore.py, line 1538, in _Next
raise _ToDatastoreError(err)
  File /base/python_lib/versions/1/google/appengine/api/
datastore.py, line 1965, in _ToDatastoreError
raise errors[err.application_error](err.error_detail)
Timeout

--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: App Gallery Error (with start=600)

2009-03-08 Thread Let Delete My Apps

You can see another response:

Traceback (most recent call last):
  File /base/python_lib/versions/1/google/appengine/ext/webapp/
__init__.py, line 501, in __call__
handler.get(*groups)
  File /base/data/home/apps/appgallery/3.11/appgallery.py, line 398,
in get
apps = query.Get(start + num)[start:]
  File /base/python_lib/versions/1/google/appengine/api/
datastore.py, line 942, in Get
return self._Run(limit, offset)._Next(limit)
  File /base/python_lib/versions/1/google/appengine/api/
datastore.py, line 1536, in _Next
apiproxy_stub_map.MakeSyncCall('datastore_v3', 'Next', req,
result)
  File /base/python_lib/versions/1/google/appengine/api/
apiproxy_stub_map.py, line 68, in MakeSyncCall
apiproxy.MakeSyncCall(service, call, request, response)
  File /base/python_lib/versions/1/google/appengine/api/
apiproxy_stub_map.py, line 240, in MakeSyncCall
stub.MakeSyncCall(service, call, request, response)
  File /base/python_lib/versions/1/google/appengine/runtime/
apiproxy.py, line 183, in MakeSyncCall
rpc.CheckSuccess()
  File /base/python_lib/versions/1/google/appengine/api/
apiproxy_rpc.py, line 111, in CheckSuccess
raise self.exception
ProtocolBufferDecodeError: Problem parsing scalar value into field:
stringValue
.
.
.
.
On Mar 8, 4:17 pm, Let Delete My Apps davide.rogn...@gmail.com
wrote:
 http://appgallery.appspot.com/results?recentapps=truestart=600num=5

 Traceback (most recent call last):
   File /base/python_lib/versions/1/google/appengine/ext/webapp/
 __init__.py, line 501, in __call__
     handler.get(*groups)
   File /base/data/home/apps/appgallery/3.11/appgallery.py, line 398,
 in get
     apps = query.Get(start + num)[start:]
   File /base/python_lib/versions/1/google/appengine/api/
 datastore.py, line 942, in Get
     return self._Run(limit, offset)._Next(limit)
   File /base/python_lib/versions/1/google/appengine/api/
 datastore.py, line 1538, in _Next
     raise _ToDatastoreError(err)
   File /base/python_lib/versions/1/google/appengine/api/
 datastore.py, line 1965, in _ToDatastoreError
     raise errors[err.application_error](err.error_detail)
 Timeout
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: New Limits for Several App Engine Operations

2009-03-08 Thread Let Delete My Apps

I think is useful to document the GAE's limits.
See the post:
http://groups.google.com/group/google-appengine/browse_thread/thread/f3e1070830cb534c#
.
.
.
.
On Feb 13, 11:13 pm, Marce (Google) ma...@google.com wrote:
 For those of you who haven't already heard, we're very excited
 yesterday to have announced that we've raised limits on several App
 Engine operations:

     * No more High CPU Requests! App Engine Apps were once allowed
 no more than 2 CPU-intensive requests per minute. We've made some
 adjustments to the way we handle requests, and have eliminated this
 limitation altogether. To learn more about how this works and the
 implications for your app, see our documentation.
     * Response deadline raised to 30 seconds. The amount of time an
 App Engine app can take to respond to an incoming request has been
 raised from 10 to 30 seconds! There are limits on the number of
 simultaneous active requests an application can process at any given
 moment--see our docs to learn more.
     * Size limits on code files, static files, and requests/responses
 raised to 10MB! App Engine apps can now receive requests and send
 responses of up to 10MB in size, and users can upload 10MB code and
 static files as well. Note that API requests (e.g. memcache.set(),
 db.put()) are still limited to 1MB in size.

 These changes were inspired and driven by a great deal of developer
 feedback, and we're not done! Please let us know what you'd like to
 see next on App Engine .
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: BadRequestError: offset may not be above 1000

2009-03-08 Thread Let Delete My Apps

Does an utility exists to simplify this bad work? (or some examples)

I use this order:
query.order('-time')
.
.
.
On Mar 8, 4:57 pm, djidjadji djidja...@gmail.com wrote:
 Make multiple queries. Use a value from the last object retrieved to
 select new objects with a greater value, __key__ is a good field to
 use, or use the field you sort on.
 Make sure you will stay within 30 sec wall clock time.

 2009/3/8 Let Delete My Apps davide.rogn...@gmail.com:



  Sorry but I do not understand :-(
  How can I see the record 2001 ?
  .
  .
  On Mar 8, 2:00 pm, Sharp-Developer.Net
  alexander.trakhime...@gmail.com wrote:
  Fromhttp://code.google.com/appengine/docs/python/datastore/queryclass.html
  :

  The datastore fetches offset + limit results to the application. The
  first offset results are not skipped by the datastore itself.
  --
  Alexhttp://sharp-developer.net/

  On Mar 8, 10:56 am, Let Delete My Apps davide.rogn...@gmail.com
  wrote:

   *** The Query Class 
   ***http://code.google.com/appengine/docs/python/datastore/queryclass.html

   -- fetch(limit, offset=0)
   offset -- The number of results to skip.

   Then?
   Why do I see this error?

   BadRequestError: offset may not be above 1000
   .
   .
   On Mar 8, 6:06 am, Wooble geoffsp...@gmail.com wrote:

On Mar 7, 5:05 pm, Let Delete My Apps davide.rogn...@gmail.com
wrote:

 Hi All,
 I see this error using this code:

 query.fetch(1000, offset=1001)

RTFM before deleting all of your apps.
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: BadRequestError: offset may not be above 1000

2009-03-08 Thread Let Delete My Apps

This is a pagination problem:
- items per page: 10
.
.
.
On Mar 8, 5:25 pm, djidjadji djidja...@gmail.com wrote:
 If you sort on time why do you want to see the object that was stored
 2000 entries ago.
 Do you also need the objects with time stamp 0..2000?
 It makes more sense to find the objects 10 days or 3 month ago.

 2009/3/8 Let Delete My Apps davide.rogn...@gmail.com:



  Does an utility exists to simplify this bad work? (or some examples)

  I use this order:
  query.order('-time')
  .
  .
  .
  On Mar 8, 4:57 pm, djidjadji djidja...@gmail.com wrote:
  Make multiple queries. Use a value from the last object retrieved to
  select new objects with a greater value, __key__ is a good field to
  use, or use the field you sort on.
  Make sure you will stay within 30 sec wall clock time.

  2009/3/8 Let Delete My Apps davide.rogn...@gmail.com:

   Sorry but I do not understand :-(
   How can I see the record 2001 ?
   .
   .
   On Mar 8, 2:00 pm, Sharp-Developer.Net
   alexander.trakhime...@gmail.com wrote:
   Fromhttp://code.google.com/appengine/docs/python/datastore/queryclass.html
   :

   The datastore fetches offset + limit results to the application. The
   first offset results are not skipped by the datastore itself.
   --
   Alexhttp://sharp-developer.net/

   On Mar 8, 10:56 am, Let Delete My Apps davide.rogn...@gmail.com
   wrote:

*** The Query Class 
***http://code.google.com/appengine/docs/python/datastore/queryclass.html

-- fetch(limit, offset=0)
offset -- The number of results to skip.

Then?
Why do I see this error?

BadRequestError: offset may not be above 1000
.
.
On Mar 8, 6:06 am, Wooble geoffsp...@gmail.com wrote:

 On Mar 7, 5:05 pm, Let Delete My Apps davide.rogn...@gmail.com
 wrote:

  Hi All,
  I see this error using this code:

  query.fetch(1000, offset=1001)

 RTFM before deleting all of your apps.
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Google AdSense on App Engine

2009-03-08 Thread Let Delete My Apps

Idea:
Can I put AdSense on my app to receive additional computing resources,
instead to receive money?

I saw:
http://www.google.com/services/adsense_tour/index.html

--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: Annoucement: you may now purchase additional computing resources

2009-03-08 Thread Let Delete My Apps

See this idea: Google AdSense on App Engine
http://groups.google.com/group/google-appengine/browse_thread/thread/416f671a246a3e07#
.
.
.
On Feb 24, 10:30 pm, Jeff S j...@google.com wrote:
 Hi all,

 We've just announced that it is now possible to purchase additional
 quota for your application. To borrow from our blog post,

 
 We're psyched to announce that developers can now purchase additional
 computing resources on App Engine, enabling apps to scale beyond our
 free quotas. This has been our most requested improvement to App
 Engine and we're thrilled to deliver it, as promised.

 You can now set a daily budget for your app that represents the
 maximum amount you're willing to pay for computing resources each day.
 You allocate this budget across CPU, bandwidth, storage, and email,
 and you pay for only what your app consumes beyond the free
 thresholds...
 

 More details are available at the following locations:

 Blog 
 post:http://googleappengine.blogspot.com/2009/02/new-grow-your-app-beyond-...

 Updated quota documentation 
 page:http://code.google.com/appengine/docs/quotas.html

 Documentation on purchasing additional 
 quota:http://code.google.com/appengine/docs/billing.html

 Billing FAQs:http://code.google.com/appengine/kb/billing.html

 Questions? Comments? :-)

 Happy coding,

 Jeff
--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: Converting model objects to JSON

2009-03-07 Thread Let Delete My Apps

An example from my last app:

results = []
for app in apps:
results.append({appname : app.appname})

# for JSONP
callback = this.request.get(callback)

this.response.headers[Content-Type] = text/javascript
callback = %s(%s) % (callback, json.write(result))
this.response.out.write(callback)


On Mar 6, 12:28 pm, Devraj Mukherjee dev...@gmail.com wrote:
 Hi all,

 Quick question about converting model objects in JSON. Have done some
 reading and I can't find a way to use simplejson to serialize model
 objects because the data types don't support it.

 What is the best way to convert a model to json?

 Thanks.

 --
 The secret impresses no-one, the trick you use it for is everything
 - Alfred Borden (The Prestiege)

--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] BadRequestError: offset may not be above 1000

2009-03-07 Thread Let Delete My Apps

Hi All,
I see this error using this code:

query.fetch(1000, offset=1001)

--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] Re: Go2 is going to pay the bill. Go2 accepts donation now. Any cooperation is welcome.

2009-03-07 Thread Let Delete My Apps

$360 ??? :-O

On Mar 7, 8:12 am, admin go2 go2apps...@gmail.com wrote:
 Go2 is the second popular app on GAE. Go2 is very fast. Sometimes it is
 faster than you visiting the website directly. Go2 also supports to sign in
 lots of web sites, including bebo etc. . There are more than 10,000 visitors
 from all over the world using Go2 every day. And the number is increasing
 every day.

 According to the google's new policy, the free bandwidth of the app will be
 changed from 20G(10G in and 10G out) to 1G after May 25th, 2009. The extra
 bandwidth must be purchased.

 1G bandwidth is not enough for Go2. We estimate that Go2 will consume more
 than 100G bandwidth per day after May 25th, 2009.

 In order to continue providing the Go2's free service to the world, Go2 is
 going to pay the bill, which is about  $360 per month (100G*$0.12/G*30).

 Now the go2's advertising income is about $120 per month, which is not
 enough to pay the bill.
 So please donate to Go2, let Go2 continue providing the excellent service to
 people all over the world who need it.

 Any cooperation is also welcome.
 go2.appspot.com

 Appendix
 A. Go2 is the second popular app on GAE.
 See the report of alexa. The data is at the bottom of the 
 pagehttp://www.alexa.com/data/details/traffic_details/appspot.com.

 B. Who  are using Go2? The top 20 countries or regions are:
 1    China
 2    United Kingdom
 3    United States
 4    Norway
 5    Colombia
 6    Australia
 7    Canada
 8    India
 9    Saudi Arabia
 10    Hong Kong
 11    Russia
 12    Philippines
 13    Brazil
 14    Ireland
 15    Mexico
 16    Ghana
 17    Netherlands
 18    France
 19    Japan
 20    Germany
 (Data from Google Analytics)

--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---



[google-appengine] appspot.com - Traffic Details From Alexa

2009-03-07 Thread Let Delete My Apps

This site is very useful (but is it reliable?)
http://www.alexa.com/data/details/traffic_details/appspot.com

--~--~-~--~~~---~--~~
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-appengine@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
-~--~~~~--~~--~--~---