Django Integration with Amazon 'SimpleDB' Database

Can someone help me develop a django application with SimpleDB (Amazon Database) as a database. I could not find any search tutorials. Can someone help me by explaining the process of integrating Django with SimplDB to create a small application. Or, if someone has any tutorials, share it with me. Any help would be appreciated.

+3
source share
2 answers

At the moment it does not seem to use Django ORM with SimpleDB unless you want to write all the code yourself. I suggest interacting with SimpleDB using regular Python code (which will be triggered by your views or, nevertheless, you want to do this).

To do this, use boto . It is mature, stable and well documented - I used it quite successfully in the Django project that I recently took.

+2
source

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

+4
source

Source: https://habr.com/ru/post/1793584/


All Articles