django-odm2

Django-odm2 maps the ODM2 model to django ORM

Quick Start

django-odm2 is available on PyPI and can be installed with pip.

$ pip install django-odm2

After installing django-odm2 add it to your INSTALLED_APPS list:

INSTALLED_APPS = [
    ...
    'django_odm2'
]

Then run migrate command to create the database tables:

$ python manage.py migrate