> What about CSV? You can export from Excel as CSV pretty easily and it's a > fairly easy format to parse in python...
Either that or tab-delimited text. I have a django app that does bulk data upload from the admin interface according to the following protocol. 1. Users make their bulk upload data tables in excel. 2. They log onto the Django admin site, where I have a special ExcelImport model set up --- it just has a TextField where the data goes. 3. They copy the entire table from excel and paste it in the TextField, then click Save. 4. I have a custom save() method for the ExcelImport class that processes the data and creates the related objects. > > Thanks, > > Dave > > -- > David Reynolds > [EMAIL PROTECTED] > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---