[google-appengine] Re: UnicodeEncodeError when using bulkupload to download from datastore

2009-08-01 Thread Holger
What's the name of your 'TextProperty' field? > I tracked this error down to a 'TextProperty' Field in the datastore. If this name should contain strange letters (ÄÜÖ etc) try changing the name. --- Re Datastore upload: That's an important question - would be interested in an answer too. --~--~-

[google-appengine] Re: UnicodeEncodeError when using bulkupload to download from datastore

2009-08-02 Thread iceanfire
the name is: description On Aug 1, 8:58 pm, Holger wrote: > What's the name of your 'TextProperty' field? > > > I tracked this error down to a 'TextProperty' Field in the datastore. > > If this name should contain strange letters (ÄÜÖ etc) try changing the > name. > > --- > Re Datastore upload:

[google-appengine] Re: UnicodeEncodeError when using bulkupload to download from datastore

2009-08-02 Thread djidjadji
The string you want to store contains characters that are not in the ascii range 0..127. You string uses some encoding, like utf-8 or iso8859- You must tell in your bulkloader that it is not a byte string, but a string with a certain encoding. Use a lambda function that converts it to a unicode us