up vote 0 down vote favorite
share [g+] share [fb]

I'm trying to store some data in a binary file:

import os, pickle

o = some_object()
file = open('test', 'wb') #this causes the error
pickle.dump(o, file)
file.close()

I get this error: IOError: invalid mode: wb

It doesn't work (neither on test server or GAE itself), apparantly because it does't have the write permission.

How can I create files on Appengine?

link|improve this question
feedback

2 Answers

up vote 5 down vote accepted

GAE is readonly, you can only store stuff in the datastore

here is a link to the docs

link|improve this answer
That's what I was afraid of. thanks for saving me time, though. :) – Ali Shabdar Oct 6 '09 at 14:02
feedback

I think the short answer is you shouldn't. I suggest you store this info in BigTable as a Blob and serve it up that way.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.