Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to create an excel file in google app engine (python)?

I want to create an excel sheet using Google App Engine in python.

my application datastore contains the data of company details like

name, business, website,..etc.,.

i want to put those details in an excel sheet, is it possible to generate excel file in Google App Engine using python.

can anybody help me!

like image 402
Shiva Srikanth Thummidi Avatar asked Jan 24 '23 05:01

Shiva Srikanth Thummidi


1 Answers

You can't write to the filesystem in App Engine, so pyexcelerator's save function obviously won't work.

You'll want to take the data pyexcelerator's generating, and instead of writing it to a file either save it as a blob in the Datastore or return it directly to the user's browser.

like image 136
Wooble Avatar answered Jan 25 '23 19:01

Wooble