[google-appengine] High Amount CPU Quota should be removed

2008-09-21 Thread mitnickcbc
I have filed a feature request for this issue, if you feel so please star it. http://code.google.com/p/googleappengine/issues/detail?id=720 Here is the description: Well, I don't get the purpose for having a High Amount CPU Quota since there is already a general CPU Quota. And there are quite a

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

2008-09-21 Thread Aral Balkan
Hi, I'm not sure when this changed but it seems that you cannot specify offsets above 1,000 which kind of kills my backup app. How are we supposed to iterate over large datasets? Thanks, Aral --~--~-~--~~~---~--~~ You received this message because you are subscri

[google-appengine] Re: High Amount CPU Quota should be removed

2008-09-21 Thread Aral Balkan
Starred it. I agree that this is a big problem. The quota system in general is the thorn in Google App Engine's side and, from a public relations perspective, quite a nightmare. Given that most people will check out an application when it's getting a lot of publicity (and hits), the first experi

[google-appengine] NeedIndexError, but index is in index.yaml file

2008-09-21 Thread djidjadji
I have a BarB object that is the parent of a couple of FooA objects. I want to find all the FooA objects that have a certain parent and that have an "myID < 0" barB = BarB.get_by_key_name(keyname) result = FooA.all().ancestor(barB).filter('myID <', 0) When I test it on the devappserver v1.1.3 it

[google-appengine] Re: High Amount CPU Quota should be removed

2008-09-21 Thread Sylvain
Starred it too. Big issue here. - fetch an url + a put() -> 2000 mcycles and more - fetch(100) (+order, filter...) -> 2000 mcycles and more - use import.zip (level = 6 ) -> 2000 mcycles and more - GQL restriction then you need to order by python -> 2000 mcycles and more - etc,... This quota is

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

2008-09-21 Thread Michael
I have the same problem. I can understand the result limit, but offset ? Simple solution is add a record ID . On Sep 21, 10:15 am, Aral Balkan <[EMAIL PROTECTED]> wrote: > Hi, > > I'm not sure when this changed but it seems that you cannot specify > offsets above 1,000 which kind of kills my back

[google-appengine] Re: High Amount CPU Quota should be removed

2008-09-21 Thread ravinder thakur
I think this is the biggest roadblock that will be preventing anyone to develop and deploy any real world apps based on appengine.The calculation of these warning limits is so unpredictable so how can one be supposed to optimize the queries for these limits ? --~--~-~--~~~-

[google-appengine] baltic-avenue: An open source clone of the Amazon S3 REST API for Google App Engine

2008-09-21 Thread John Spurlock
I've been recently experimenting with the idea of creating an open source S3 REST API clone that runs as a GAE application. This would allow for "private S3 instances" that leverage the google hosted infrastructure (big-table etc) and your existing S3 tools/applications/ processes. The project h

[google-appengine] Re: baltic-avenue: An open source clone of the Amazon S3 REST API for Google App Engine

2008-09-21 Thread Andrew Badera
Sweet! On Sun, Sep 21, 2008 at 2:04 PM, John Spurlock <[EMAIL PROTECTED]>wrote: > > I've been recently experimenting with the idea of creating an open > source S3 REST API clone that runs as a GAE application. This would > allow for "private S3 instances" that leverage the google hosted > infras

[google-appengine] Re: baltic-avenue: An open source clone of the Amazon S3 REST API for Google App Engine

2008-09-21 Thread Sylvain
Great Job. On 21 sep, 20:06, "Andrew Badera" <[EMAIL PROTECTED]> wrote: > Sweet! > > On Sun, Sep 21, 2008 at 2:04 PM, John Spurlock <[EMAIL PROTECTED]>wrote: > > > > > > > I've been recently experimenting with the idea of creating an open > > source S3 REST API clone that runs as a GAE applicatio

[google-appengine] Re: Help with DateTimeProperty datastore stuff

2008-09-21 Thread Sam G
Worked like a charm. Thanks again, Alexander. On Sep 20, 11:02 pm, Alexander Kojevnikov <[EMAIL PROTECTED]> wrote: > Try this: > >     message.timestamp = message.created.strftime("%I:%M %p") > > You are confusing time.strftime() with datetime.datetime.strftime() > > On Sep 21, 4:13 pm, Sam G <[

[google-appengine] Re: Unit test failure with 1.1.3 release

2008-09-21 Thread I.K.
Hi, I'm suffering with the same problem since upgrading to 1.1.3. I have always included the first argument here: stub = datastore_file_stub.DatastoreFileStub(u'myTemporaryDataStorage', '/dev/ null', '/dev/null') Do you have any more information on what you changed to correct your problem pleas

[google-appengine] problem with Google App Daily Limit

2008-09-21 Thread flyingshadow
Dear All, I created a google app with my domain to use along with my marketing campaign. I'm using 200 smtp accounts created with this domain to send about 2 emails, the program to send these emails has multi smtp and load balancing features. But after sending about 2000 first emails successf

[google-appengine] Re: App.Yaml seems to be malfunctioning

2008-09-21 Thread Pranav Prakash
Folks, Thanks for your consideration. I got the error. I was using post stream where the need was of get. Thanks :-) Regards, Pranny On Sun, Sep 21, 2008 at 13:32, Pranny <[EMAIL PROTECTED]> wrote: > Hi, My App.Yaml file is as follows > > application: felix > version: 1 > runtime: python > api

[google-appengine] Update only few files

2008-09-21 Thread stiitankur
Hi, I Have a site(still under development). i have many static html pages in that which may be require some changes periodically , some of them will be melted or new will be added. can we do this like only update required file nd upload themor how to delete some file once tht is uploadedo

[google-appengine] How to get a users last entry in a table

2008-09-21 Thread NTulip
Guys, I need some help. I am trying to figure out to get a single record from a table that represents the users last entry. Example: You are logging each users log in. You want to display their last login date. Exactly how does one go about getting the last record in the AttemptedLogins model w

[google-appengine] Re: About SMS verification in China

2008-09-21 Thread Haisheng HU
As I have ever been trying since this July, it never works. My cellphone number is from China Mobile. BTW, Google Calendar reminder works very fine. And it seems Google is constantly changing its SMS service partner within Chinese Mainland. Now the message is ended with "君悦电子". Hope some Google g

[google-appengine] Re: How to I use xml.sax in google app engine??

2008-09-21 Thread acm
Hi Marc On Sep 11, 1:08 am, marc <[EMAIL PROTECTED]> wrote: > def returnTasks(xmldata): >     handler = TaskHandler() >     xml.sax.parseString(xmldata,handler) >     return handler.tasks > > I read the xmldata from a url with googles url fetch. > It works from command line. But when I run it in

[google-appengine] Which versions of Python work?

2008-09-21 Thread david
Hello everyone, I came here just to ask one questions, I think most already know that Python 3k version is coming out soon and that it will be incompatible with earlier versions (2.X). The question is, will Google App Engine work with Python 3k or it will work with 2.5.X or 2.X ? Thanks for your

[google-appengine] Re: 1.1.3 appinfo_errors import problem

2008-09-21 Thread Byron Saltysiak
Ah. The problem is that in the linux zip the files come with mixed permissions. Ex: -r-xr-x--- 1 root root 1476 2008-09-11 20:35 appinfo_errors.py -r-xr-xr-x 1 root root 13085 2008-09-11 20:35 appinfo.py Because I installed as root and tried to run as user. I updated the owner and it's fine but

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

2008-09-21 Thread Byron Saltysiak
Perhaps more targetted queries? On 9/21/08, Aral Balkan <[EMAIL PROTECTED]> wrote: > > Hi, > > I'm not sure when this changed but it seems that you cannot specify > offsets above 1,000 which kind of kills my backup app. > > How are we supposed to iterate over large datasets? > > Thanks, > Aral

[google-appengine] Update/delete only few files

2008-09-21 Thread stiitankur
Hi, I Have a site(still under development). i have many static html pages in that which may be require some changes periodically , some of them will be melted or new will be added. can we do this like only update required file nd upload themor how to delete some file once tht is uploadedo

[google-appengine] Python versions

2008-09-21 Thread david
Hello everyone, I came here just to ask one questions, I think most already know that Python 3k version is coming out soon and that it will be incompatible with earlier versions (2.X). The question is, will Google App Engine work with Python 3k or it will work with 2.5.X or 2.X ? Thanks for your

[google-appengine] Re: Problem with my (probably) poorly written function, CheckToken()

2008-09-21 Thread Byron Saltysiak
Maybe the user that you think you're using is not the one really being used? Maybe change the code to print out/ log the user and token instead of the redirect? On 9/20/08, Sam G <[EMAIL PROTECTED]> wrote: > > No ideas, from anyone? > > Sam > > On Sep 18, 10:09 pm, Sam G <[EMAIL PROTECTED]> wro

[google-appengine] Re: Removing warning messages when starting up server

2008-09-21 Thread Josh
Hi sotirac, I saw the same problem as you. I fixed the "No module named PIL" by installing PIL (sudo apt-get install python-imaging). And then the datastore warnings go away as soon as you've stored something to the local datastore. This happens once you start doing things with you app. So don'

[google-appengine] Google app engine django helper, manage.py update, and (1,0,'final')

2008-09-21 Thread Josh
Hi there, I've been following the instructions here: http://code.google.com/appengine/articles/appengine_helper_for_django.html And everything's worked well, until I tried to use: python manage.py update I ran into the expected problem of: "Error: Your action, 'update', was invalid." Because my

[google-appengine] How to use Expando in djangoforms.ModelForm?

2008-09-21 Thread Shooting
I create a Expando and want the ModelForm to show the form based on the Expando's dynamic properties. Is there any "standard" or "official" way to do so? Or is there any plan for an ExpandoForm or any support on this? I found if I want this feature, I may need to add something to the Expando to r

[google-appengine] how can I upload files bigger than 4MB use django and gae

2008-09-21 Thread [EMAIL PROTECTED]
I want to upload a 200MB file in google app engine. What can I do? Thanks in advance. --~--~-~--~~~---~--~~ 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@

[google-appengine] local copy not refreshing?

2008-09-21 Thread K-Man
Hi All, I'm slightly new to Google App Engine, and I wrote a test app, but now it will only run that test app, and only the 1st version of it I wrote. I tried deleting the test app and replacing it with something else, but it's still the old app. i checked the main.py file and it contains the o

[google-appengine] Update/delete few files

2008-09-21 Thread stiitankur
Hi, I Have a site(still under development). i have many static html pages in that which may be require some changes periodically , some of them will be melted or new will be added. can we do this like only update required file nd upload themor how to delete some file once tht is uploadedo

[google-appengine] same code?

2008-09-21 Thread K-Man
Hi All, I'm slightly new to Google App Engine, and I wrote a test app, but now it will only run that test app, and only the 1st version of it I wrote. I tried deleting the test app and replacing it with something else, but it's still the old app. i checked the main.py file and it contains the o

[google-appengine] ImportError: No module named _md5

2008-09-21 Thread JoshuaJ
When I try to run google's "hello world" example in GoogleAppEngineLauncher on Mac OS X, I get an error message complaining "ImportError: No module named _md5". A similar question was posted here several months ago, and a workaround was provided, but that one no longer applies; the workaround has

[google-appengine] 1.1.3 appinfo_errors import problem

2008-09-21 Thread byronsalty
I just got the 1.1.3 SDK today and now I'm getting the following import error. I'm on Ubuntu 8.04 with Python 2.5.2. $ python dev_appserver.py Traceback (most recent call last): File "dev_appserver.py", line 55, in execfile(script_path, globals()) File "/usr/local/google_appengine/google

[google-appengine] Python versions

2008-09-21 Thread david
Hello everyone, I came here just to ask one questions, I think most already know that Python 3k version is coming out soon and that it will be incompatible with earlier versions (2.X). The question is, will Google App Engine work with Python 3k or it will work with 2.5.X or 2.X ? Thanks for your

[google-appengine] GWT and App engine integration (RPC)

2008-09-21 Thread JJ
Hi, I feel there's a strong need for GWT and App engine to be integrated through RPC. There's some effort on this at python-gwt-rpc, but I feel it has to be a more concrete merge between these two google products. GWT is growing real quick, and it's natural that ppl wanna host it on app engine.

[google-appengine] Re: I'm from China, and I can't receive SMS verification when I try to register

2008-09-21 Thread Haisheng HU
As I have ever been trying since this July, it never works. My cellphone number is from China Mobile too. BTW, Google Calendar reminder works very fine. And it seems Google is constantly changing its SMS service partner within Chinese Mainland. Now the message is ended with "君悦电子". Hope some Goo

[google-appengine] App.Yaml seems to be malfunctioning

2008-09-21 Thread Pranny
Hi, My App.Yaml file is as follows application: felix version: 1 runtime: python api_version: 1 handlers: - url: / script: Login.py - url: /newuser script: NewUser.py When i test it, @ localhost:8080 i get the Login Page, as expected. However, when i try @ localhost:8080/newuser i get a 4

[google-appengine] Re: problem with Google App Daily Limit

2008-09-21 Thread Byron Saltysiak
Maybe I don't understand the question - the limit is 2000 emails a day: http://code.google.com/appengine/articles/quotas.html On Sun, Sep 21, 2008 at 2:34 PM, flyingshadow <[EMAIL PROTECTED]>wrote: > > Dear All, > > I created a google app with my domain to use along with my marketing > campaign.

[google-appengine] Re: same code?

2008-09-21 Thread Byron Saltysiak
I don't understand - you edit the file, save it, and re-open it in the same window and it's not changed? On Sat, Sep 20, 2008 at 9:54 PM, K-Man <[EMAIL PROTECTED]> wrote: > > Hi All, > > I'm slightly new to Google App Engine, and I wrote a test app, but now > it will only run that test app, and o

[google-appengine] Re: Google app engine django helper, manage.py update, and (1,0,'final')

2008-09-21 Thread Josh
I believe I was able to solve this problem by syncing my django install to revision 8250'ish. Using that version these obvious errors go away... I just don't get to use the newest (best?) release of django. On Sep 20, 3:46 pm, Josh <[EMAIL PROTECTED]> wrote: > Hi there, > > I've been following t

[google-appengine] Re: Update/delete few files

2008-09-21 Thread Byron Saltysiak
I'd suggest host them elsewhere. On Sat, Sep 20, 2008 at 3:51 PM, stiitankur <[EMAIL PROTECTED]> wrote: > > Hi, > > I Have a site(still under development). i have many static html pages > in that which may be require some changes periodically , some of them > will be melted or new will be added.

[google-appengine] Re: Update only few files

2008-09-21 Thread Barry Hunter
When you say 'upload whole application' - yes you tell appcfg.py to just upload the whole folder - but actully under the hood it only uploads the changes - it keeps tracks of files uploaded and if they have been uploaded before it just copies them from the previous version - on the server. It wil

[google-appengine] Re: Google app engine django helper, manage.py update, and (1,0,'final')

2008-09-21 Thread Aral Balkan
I was thinking of updating to the latest versions of Django and the helper but will be holding off based on these issues. Can someone respond as to the roadmap for Django 1.0 compatibility? Thanks, Aral On Sep 21, 9:46 pm, Josh <[EMAIL PROTECTED]> wrote: > I believe I was able to solve this pro

[google-appengine] Re: NeedIndexError, but index is in index.yaml file

2008-09-21 Thread Alexander Kojevnikov
Star this issue: http://code.google.com/p/googleappengine/issues/detail?id=423 On Sep 22, 1:50 am, djidjadji <[EMAIL PROTECTED]> wrote: > I have a BarB object that is the parent of a couple of FooA objects. > I want to find all the FooA objects that have a certain parent and > that have an "myID

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

2008-09-21 Thread Alexander Kojevnikov
GAE uses client-side offsets, that means it first runs the query, then iterates on the result to reach the offset you specified. This implies that the offset cannot be greater than the result limit: http://code.google.com/appengine/docs/datastore/creatinggettinganddeletingdata.html#Getting_Entitie

[google-appengine] Re: Google app engine django helper, manage.py update, and (1,0,'final')

2008-09-21 Thread Alexander Kojevnikov
App Engine Patch works fine with Django 1.0 http://code.google.com/p/app-engine-patch/ On Sep 22, 9:28 am, Aral Balkan <[EMAIL PROTECTED]> wrote: > I was thinking of updating to the latest versions of Django and the > helper but will be holding off based on these issues. > > Can someone respond a

[google-appengine] Updating datastore via desktop script

2008-09-21 Thread Joseph
Hi: I got a function to update the datastore (without a form) which should be called only by a authorized user.URL of this function is: /api/ update/ I invoke this function from a desktop script (ref:http:// stackoverflow.com/questions/101742/how-do-you-access-an-authenticated- google-app-engine-

[google-appengine] 'Must Authenticate' Problem using Blogger API on App Engine

2008-09-21 Thread Murali
Hi All, I am trying to access GData Blogger API on App Engine. Though ProgrammaticLogin() was successful, subsequent GetBlogFeed() fails throwing the following error: File "C:\xxx\src\gdata\blogger\service.py", line 40, in GetBlogFeed return self.Get(uri, converter=gdata.blogger.BlogFeedFro

[google-appengine] Urlfetch works fine at localhost but errors out after uploading

2008-09-21 Thread Downtown
Hi, I am fetching a yahoo pipe in json format and I am receiving the following error message: File "/base/python_lib/versions/1/google/appengine/api/urlfetch.py", line 260, in fetch raise DownloadError(str(e)) DownloadError: ApplicationError: 3 It works fine on my localhost but errors out i

[google-appengine] serious problem with image uploading...

2008-09-21 Thread gops
I get to the point of uploading image and viewing it. I am referencing image by its key value. The problem arise when user need to change the image. There are two alternate way to do that. First is to retrieve the previous image data. and overwrite with the new one. so as the key of the original