Have a few question about mongodb with django!
1) What will be the best package/adaptor to use mongodb with django?
2) Can I create mongo collections without pre defining it's schema? like this one
from pymongo import MongoClient
client = MongoClient()
clientMongoClient('localhost', 27017)
client.database_names()
db = client.mydb
post = {"author": "Mick",
"text": "My very first blog post",
"tags": ["mongodb", "python", "pymongo"],
"date": datetime.datetime.utcnow()}
posts = db.posts
db.collection_names()
>>>[u'testData', u'system.indexes', u'mydb', u'posts']
# a new collection is created
If yes how?
3) Then how easily can I query it?