endre
endre

Reputation: 1373

cloudsql and datastore combined together with django

I am trying to find information on setting up my django+cloudsql application to be able to simultaneously use the datastore as well. Besides being an important topic to know about, I need it for image manipulation, which on appengine only seems to happen with the images API which is low level and uses the datastore.

Upvotes: 0

Views: 177

Answers (1)

Daniel Roseman
Daniel Roseman

Reputation: 599638

I don't know where you got the impression that the Images API can only use the datastore. The documentation seems to clearly show that you can pass the Image class either a blob key, or a Google Storage filename, or the image data itself as a bytestring.

Upvotes: 1

Related Questions