Use Django with mongoDB in this skeleton i've configured a sample project to use two different databases. SQLite for the authentication, session and logging and MongoDB for the application data.
I'm using mongoengine.
virtualenv env
source env/bin/activate
cd sample_project
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver