Hi, A quote from http://ikaisays.com/2010/06/10/using-the-bulkloader-with-java-app-engine/
* The CSV import adaptor is very sensitive to character encoding. As such it’s worth making sure that the data in your CSV conforms exactly to the encoding it is supposed to, and that the adaptor is looking at the right encoding. For help in configuring the yaml file http://code.google.com/intl/en/appengine/docs/python/tools/uploadingdata.html The connector options are as follows: csv connector encodingAny Python standard encoding format, such as utf-8 (the default) or windows-1252. You are using utf-8 but you need to use the content encoding of the file, you could try latin_1 or windows-1252 Andrew Bailey http://www.apps4u.co Twitter @apps4uco -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
