Django does not support MongoDb directly. Without patch Django FormModel and other classes, you can only use MongoDB without Django Form support. TO just get data out of MongoDb, this can get your start:
import mongoengine
conn = mongoengine.connect('mysite1', **{"host" : "127.0.0.1", "tz_aware": True})
from MyUser_Data import User
# get all users
users = User.objects()
Sent from Mail for Windows 10
The mongodb connection can’t be used directly for Django database settings
You have to use it in your own code.
Django can’t talk to monogodb without heavy source patch.
Don’t use mongodb as a Django DATABASES