[Django]-Django + google app engine + spreadsheets api

3👍

I’ve used openpyxl to good effect with Django + AppEngine. Openpyxl can do styles and sheets and formatting and all that stuff, and saves to an .xlsx file. If you need .xls files, then perhaps have a look at something like xlwt.

If your spreadsheets are under 1MB, then they can be saved in/served with the Datastore just fine. Otherwise, you can use the Blobstore, but that would require using the AppEngine API instead of pure Django.

Leave a comment