josephmisiti
josephmisiti

Reputation: 9974

What is a good example of how to properly use MongoDB with Django

Using Django 1.3.2 and PyMongo, I have found some random projects on github, and a few articles here and there, but overall, nothing concrete. Looking for good examples/tutorials on this integration.

Upvotes: 4

Views: 4270

Answers (2)

Arjen
Arjen

Reputation: 1321

Not a direct answer to your question, but if you want to use MongoDB and want to keep using Django-like Models and QuerySets, I can recommend MongoEngine.

Upvotes: 5

Steve Jalim
Steve Jalim

Reputation: 12195

Have you seen the MongoDB docs for Python? Specifically this bit, which links to an example project

Upvotes: 2

Related Questions