Re: [google-appengine] Problem with OAuth and Twitter

2010-07-23 Thread TAKEUCHI POMU
I got this problem too. Not only oauth, posting tweets also fails at a highly rate. It seems to continuously happen since 22:45 GMT. Pomu 2010/7/23 ke...@kanno.com : > Hi, > > I have a problem with OAuth and Twitter right now. > My application is a small Twitter client and was working fine abou

Re: [google-appengine] Re: Frequent deadline exceeded errors.

2010-10-20 Thread TAKEUCHI POMU
My app(appid: mb4sqjp) also have similar problem for these couple of days... Sometimes it leaves message I've never seen. For the most part, log says - "Request was aborted after waiting too long to attempt to service your request. This may happen sporadically when the App Engine serving cluster

Re: [google-appengine] How to upload date/time csv data in google app engine with bulkloader tool ?

2011-03-25 Thread TAKEUCHI POMU
Hi Philippe, try this, import 'datetime' on the preamble - import: datetime import transform for uploading '2011-03-22 10:10:21.812274' style datetime(omit milliseconds) import_transform: lambda x:datetime.datetime.strptime(x.split(".")[0], "%Y-%m-%d %H:%M:%S") or if you want current dateti