Kurczak wrote: > On 13 Lis, 20:45, dj <[EMAIL PROTECTED]> wrote: > >> Hello All, >> >> I am trying to detemine if there is a way to read the data from an >> Excel xls file into django. I also need to create an xls file. Does >> anyone know how that would be done ? >> > If you have windows hosting you could use COM interface from python > win32 extensions. > On any platform the xlrd module will allow you to read Excel spreadsheets. Creating them is a little more problematic, but it looks like the PyExcelerator module in SourceForge might work.
Do you *really* have to create an xls file? If your users just want to get the data into Excel then creating a csv file is a much easier way of managing that. regards Steve --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" 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/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

