[google-appengine] Re: Trouble importing PIL module

2009-03-24 Thread Audrey M Roy
> > * Because you can circumvent the sandbox. > > On 24/03/2009, Audrey M Roy wrote: > > > > > > >  I have already installed PIL in my dev environment, and it works > >  fine.  The Images API works fine for me (my app already resizes images > >  an

[google-appengine] Re: Trouble importing PIL module

2009-03-24 Thread Audrey M Roy
PIL in your dev environment. > > T > > On Mar 24, 5:16 pm, Audrey M Roy wrote: > > > Hello, > > > I'd like to use the PIL module.  I know it's not supported, so I > > copied the PIL source files into a directory in my app's source > > di

[google-appengine] Trouble importing PIL module

2009-03-24 Thread Audrey M Roy
Hello, I'd like to use the PIL module. I know it's not supported, so I copied the PIL source files into a directory in my app's source directory. At this point, "import Image, ImageDraw" didn't work. I thought it might be a package name conflict and found this other thread: http://groups.google

[google-appengine] Re: GQL Query involving key string

2009-02-28 Thread Audrey M Roy
thanks bryan & bill! yes, I was using GQL because I wanted to query via the data viewer. the KEY('mykeystring') on the right-hand side not working was throwing me off. that's good to know that it works in the shell. audrey On Feb 27, 11:49 am, Bill wrote: > Audrey, > > If for some reason, yo

[google-appengine] GQL Query involving key string

2009-02-27 Thread Audrey M Roy
How do I write a GQL query that's something like this... SELECT * FROM Pet WHERE __key__='mykeystring' the above returns the error BadFilterError: invalid filter: __key__ filter value must be a Key; received mykeystring (a unicode). Audrey --~--~-~--~~~---~--~~