How to use Django with Azure's CosmosDB?

Viewed 3432

I'm curious if it is possible to use CosmosDB as the database backend for Django projects.

2 Answers

mongodb-engine seems dead, but I found djongo, which seems to be active:

https://github.com/nesdis/djongo

It's a connector that lets you use Django with MongoDB without changing the Django ORM.

You would need to configure your Azure Cosmos DB for MongoDB.

Related