Hi, Looking through the code, I'm not finding that we have set the csv escape character for the Python csv reader, so it may not be possible to read in a csv delineated list.
Instead, you might try delineating your list with another character and writing the appropriate lambda function to evaluate the string to a list. -Marzia On Fri, Nov 28, 2008 at 1:14 AM, Brandon <[EMAIL PROTECTED]> wrote: > > Has anyone successfully uploaded lists with the bulk data uploader? > It's working for me if the list has 0 or 1 items, but naturally as > soon as the comma is added for a second list item the csv reader > interprets it as a field delimiter rather than a list item delimiter > and I get something to the effect of "AssertionError: Expected 7 CSV > columns, found 8." > > I suppose if I were to rewrite the uploader to use a delimiter other > than a comma it would work, but I'm hoping I'm just blind to a simple > solution... > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google App Engine" 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?hl=en -~----------~----~----~----~------~----~------~--~---
