[google-appengine] Site removal request

2017-08-17 Thread Sofia
/. > > Regards, > The Google Team > An unknown page of the site violates some Russian law on rallies. Really? Some strange department from Russia can close my site? -- Sofia -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. T

[google-appengine] Department from Russia can close my site?

2017-08-17 Thread Sofia S
/. > > Regards, > The Google Team > An unknown page of the site violates some Russian law on rallies. Really? Some strange department from Russia can close my site? -- Sofia -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. T

[google-appengine] DNS lookup failed for URL

2015-12-21 Thread Sofia S
This code works fine in the simulator (i.e. GoogleAppEngineLauncher). I get an DNS error when run on the GAE server. How can I fix this? #!/usr/bin/env python import webapp2 from google.appengine.api import urlfetch class MainHandler(webapp2.RequestHandler): def get(self):

[google-appengine] Re: DNS lookup failed for URL

2015-12-21 Thread Sofia S
Yesterday, during the working day I myself observed this mistake. 100% of the requests. Suddenly, everything is fine now. I can not understand what is happening. Many thanks for the quick reply! Including the text of the error would be useful. It's unclear as of this > moment where the root

[google-appengine] Re: DNS lookup failed for URL

2015-12-21 Thread Sofia S
mx:mail.rutracker.org -all" > > ;; Query time: 1 msec > ;; SERVER: 169.254.169.254#53(169.254.169.254) > ;; WHEN: Mon Dec 21 18:42:03 UTC 2015 > ;; MSG SIZE rcvd: 285 > > > On Monday, December 21, 2015 at 5:26:20 AM UTC-5, Sofia S wrote: >> >>

[google-appengine] Re: DNS lookup failed for URL

2015-12-21 Thread Sofia S
I see in the log my requests 2015-12-21 07:11 GMT - 2015-12-21 13:37 GMT. This is probably a false alarm protect the server from DDoS attacks. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop

[google-appengine] Error 302 on downloading appengine source code

2013-01-09 Thread sofia
Hi, When attempting to download the source code this is what I get appcfg.py download_app --insecure -A appid . 12:34 AM Host: appengine.google.com 12:34 AM Fetching file list... Error 302: --- begin server output --- --- end server output --- The app is in 2.5, locally I have 2.7. Can anyone

[google-appengine] Re: API call datastore_v3.Put() required more quota ?

2011-09-16 Thread sofia
I have the same problem.. Datastore quota at 100% and unable to delete an entity either through admin or using map/reduce. What I did is set up a script to delete x records at a time. I've managed to decrease data by 45% in 2 days but I then hit cpu quota so I'm guessing it's gonna take a few

[google-appengine] Re: faster machine learning on appengine (nlp bayes)

2011-02-03 Thread sofia
@Nick I'm in Portugal so for now I don't have access to the prediction api. Maybe when there's worldwide access i'll switch but for now it's a no go - any estimates on when it will be opened to the rest of the world? :) @Shane not sure how this could be implemented.. there could be

[google-appengine] faster machine learning on appengine (nlp bayes)

2011-02-02 Thread sofia
and it seems a less than optimal solution. Can anyone offer some advice? Thanks, Sofia -- 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

[google-appengine] Re: faster machine learning on appengine (nlp bayes)

2011-02-02 Thread sofia
Not sure. Words are in portuguese so they have accented chars like graça and évora - could these be keys? The whole process is more or less like this: a cronjob fetches an rss, and creates a task for each article - inserting the article and marking it as unprocessed. Then there's another

[google-appengine] Re: faster machine learning on appengine (nlp bayes)

2011-02-02 Thread sofia
I'll try both suggestions and see how it goes. Thanks for the input :) -- 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] updating 1 field inmultiple items according to another field in one go

2009-12-04 Thread sofia
| year_month a string| 2009-10-12 00:00:00 | 200910 the string | 2009-09-22 00:00:00 | 200909 Is there any way to do this, or do I have to create a script that fetches each row one by one and updates the field accordingly? Thanks, Sofia -- You received this message because you

[google-appengine] Re: updating 1 field inmultiple items according to another field in one go

2009-12-04 Thread sofia
. On Fri, Dec 4, 2009 at 9:40 AM, sofia sofiacard...@gmail.com wrote: Hi, I have a model that I need to filter by date, start and end date. It has a DateTime property to which this double filter was going to be applied but I've since found out that this isn't possible in app engine. So now

[google-appengine] Re: updating 1 field inmultiple items according to another field in one go

2009-12-04 Thread sofia
(bit[2]) + 1, bit[3]) But it might be a bit slow. Right now I have about 8 rows and i'll have many more. So performance wise, is it worth setting up the year_month field and query by that? What do you think? On Dec 4, 3:52 pm, sofia sofiacard...@gmail.com wrote: I would like to do something

[google-appengine] Re: updating 1 field inmultiple items according to another field in one go

2009-12-04 Thread sofia
, 1, 2 where 0 means Input_date is before start_date, 1 = between and 2 = after End_Date. Then you have an easy query that uses a default index and an int property. On Fri, Dec 4, 2009 at 10:52 AM, sofia sofiacard...@gmail.com wrote: I would like to do something like SELECT * FROM MyTable