Django DynamoDB Database Form

Is it possible to install AWS DynamoDB as a database supported for a Django server? If so, how do I do this?

thanks!

+7
source share
1 answer

I think the answer is impossible. Django supports relational databases, but DynamoDB is NoSQL.

There seems to be no backend for django-nonrel, an unofficial version for non-relational databases.

If you want to use amazon to host the database, you can use their RDS service and configure Django in the same way as for MySQL.

+6
source

All Articles