Jumbo
Jumbo

Reputation: 543

Post an image from code to Blobstore on appengine?

I am trying to post an image which I am downloading using URLFetch() to the blobstore.

Basically, for any given youtube video, i am first fetching the thumbnail from youtube's site and then I want to store it in the blobstore ...

can anyone help me with this?

I am using the poster moduler for the form multi=part stuff as detailed on the last comment of this post

http://code.google.com/p/googleappengine/issues/detail?id=627

Upvotes: 0

Views: 229

Answers (1)

Nick Johnson
Nick Johnson

Reputation: 101139

You don't need to use the blobstore to store such a small image. Just store it as a BlobProperty on a regular datastore model, and serve it up from there.

Upvotes: 2

Related Questions