Integrating Django with Amazon's Database 'SimpleDB'

Question:

Can somebody guide me to develop a django app with SimpleDB(Amazon’s Database) as its database. I couldnt find any tutorials on searching. Can somebody help me by explaining the process involved in integrating Django with SimplDB for creating a small application. Or if somebody have any tutorials for it, please share it with me. Any help would be appreciated.

Asked By: rv_k

||

Answers:

It doesn’t look like there’s any way to use Django’s ORM with SimpleDB at the moment, unless you want to write all the code yourself. I’d suggest interfacing with SimpleDB using normal Python code (which would get called by your views or however you wish to do it).

To do this, use boto. It’s mature, stable and well-documented — I used it quite successfully in a Django project I recently undertook.

Answered By: Alistair

There is now experimental support using django-norel with the django-simpledb backend.

Answered By: Matt Austin