Integrating Django with Amazon's Database 'SimpleDB'

2.2k views Asked by At

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.

2

There are 2 answers

2
Alistair On BEST ANSWER

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.

0
Matt Austin On

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