Re: [google-appengine] Re: get_original_metadata working?

2011-08-13 Thread Ed Estes
OK, it's been a few days and this hasn't been resolved so I opened up a bug report http://code.google.com/p/googleappengine/issues/detail?id=5581 for it. Please vote on this bug so it gets some attention. Thanks! --Ed -- You received this message because you are subscribed to the Google

Re: [google-appengine] Re: get_original_metadata working?

2011-08-12 Thread Ed Estes
Yes, something is definitely going on with GAE - I am getting timeouts/failures as well and it worked on Wednesday. Other threads are mentioning problems with slow response timeshttps://groups.google.com/forum/#!topic/google-appengine-python/VY5OprzkGOE so there appears to be something more

Re: [google-appengine] Re: Uploading database

2011-08-12 Thread Ed Estes
Another option is to develop the import functionality in a App Engine Backendhttp://www.google.com/events/io/2011/sessions/app-engine-backends.html . --Ed -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web

Re: [google-appengine] get_original_metadata working?

2011-08-10 Thread Ed Estes
Got it. Now when I execute: orgImg = images.Image(image_data) orgImg.rotate(0) orgImg.execute_transforms(parse_source_metadata=True) self.response.out.write(orgImg.get_original_metadata()) I do get a larger subset of EXIF data from my app when it's running on GAE server! Martin, I don't know

Re: [google-appengine] get_original_metadata working?

2011-08-10 Thread Ed Estes
Gyuri, You are absolutely correct. I made a bad assumption based on Martin's statement about *still have not successfully lat/long exif data out of JPG's *and my own initial results. The production photos I was looking at the results from *get_original_metadata* calls ironically enough

Re: [google-appengine] get_original_metadata working?

2011-08-09 Thread Ed Estes
Any updates on this? With App Engine 1.5.3 Pre-releasehttps://groups.google.com/forum/#!topic/google-appengine/gi8F8lWzRJUbeing announced, I was hoping someone would acknowledge *get_original_metadata* was broken and was being addressed in the next release. --Ed -- You received this

Re: [google-appengine] get_original_metadata working?

2011-08-09 Thread Ed Estes
Thanks for the pointer Martin. By adding the lines of code before calling * get_original_metadata*: orgImg.rotate(0) orgImg.execute_transforms() orgImg.get_original_metadata() I am able to get the following data EXIF data now: {u'ImageLength': 480, u'ImageWidth': 640} but that really doesn't

[google-appengine] Increase apps size restriction above 10 megabytes?

2011-07-29 Thread Ed Estes
Greetings. According to the Google App Engine Quotashttp://code.google.com/appengine/docs/quotas.html, apps are restricted to a maximum size of 10 megabytes when deployed. Is there a way to increase this? I have a .dat database file that is 30MB that I need to upload and access within my

Re: [google-appengine] Increase apps size restriction above 10 megabytes?

2011-07-29 Thread Ed Estes
Thanks Ikai, That was my fallback if there wasn't a way to increase the amount of app space. I was hoping that once one moved to a billable model, the app quota could be raised (within reason) like many of the other billable items. We'll look at ways of storing the database in the blobstore

[google-appengine] Re: get_original_metadata working?

2011-07-25 Thread Ed Estes
I too am interested in *get_original_metadata *calls to pull metadata from photos. I haven't seen any updates to the docs to reflect what came out with GAE 1.5.2 SDK. Any confirmation/assistance with this would be greatly appreciated. Thanks! --Ed -- You received this message because you

Re: [google-appengine] get_original_metadata working?

2011-07-25 Thread Ed Estes
Thanks for confirming this. I was calling it the same way (similar to the *histogram *method) but since I wasn't seeing any data (it was also returning *None*), I thought I was not calling *get_original_metadata* properly. I was using some of the sample photos found over on