├── .gitignore ├── .travis.yml ├── AUTHORS ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── benchmark.py ├── docs ├── Makefile ├── _themes │ └── nature │ │ ├── static │ │ ├── nature.css_t │ │ └── pygments.css │ │ └── theme.conf ├── apireference.rst ├── changelog.rst ├── code │ └── tumblelog.py ├── conf.py ├── django.rst ├── guide │ ├── connecting.rst │ ├── defining-documents.rst │ ├── document-instances.rst │ ├── gridfs.rst │ ├── index.rst │ ├── installing.rst │ ├── querying.rst │ └── signals.rst ├── index.rst ├── tutorial.rst └── upgrade.rst ├── mongoengine ├── __init__.py ├── base.py ├── connection.py ├── dereference.py ├── django │ ├── __init__.py │ ├── auth.py │ ├── sessions.py │ ├── shortcuts.py │ ├── storage.py │ └── tests.py ├── document.py ├── fields.py ├── python_support.py ├── queryset.py ├── signals.py └── tests.py ├── python-mongoengine.spec ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── fixtures.py ├── mongoengine.png ├── test_all_warnings.py ├── test_connection.py ├── test_dereference.py ├── test_django.py ├── test_document.py ├── test_dynamic_document.py ├── test_fields.py ├── test_queryset.py ├── test_replicaset_connection.py └── test_signals.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/README.rst -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/benchmark.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_themes/nature/static/nature.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/_themes/nature/static/nature.css_t -------------------------------------------------------------------------------- /docs/_themes/nature/static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/_themes/nature/static/pygments.css -------------------------------------------------------------------------------- /docs/_themes/nature/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/_themes/nature/theme.conf -------------------------------------------------------------------------------- /docs/apireference.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/apireference.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/code/tumblelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/code/tumblelog.py -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/django.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/django.rst -------------------------------------------------------------------------------- /docs/guide/connecting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/guide/connecting.rst -------------------------------------------------------------------------------- /docs/guide/defining-documents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/guide/defining-documents.rst -------------------------------------------------------------------------------- /docs/guide/document-instances.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/guide/document-instances.rst -------------------------------------------------------------------------------- /docs/guide/gridfs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/guide/gridfs.rst -------------------------------------------------------------------------------- /docs/guide/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/guide/index.rst -------------------------------------------------------------------------------- /docs/guide/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/guide/installing.rst -------------------------------------------------------------------------------- /docs/guide/querying.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/guide/querying.rst -------------------------------------------------------------------------------- /docs/guide/signals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/guide/signals.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /docs/upgrade.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/docs/upgrade.rst -------------------------------------------------------------------------------- /mongoengine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/mongoengine/__init__.py -------------------------------------------------------------------------------- /mongoengine/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/mongoengine/base.py -------------------------------------------------------------------------------- /mongoengine/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/mongoengine/connection.py -------------------------------------------------------------------------------- /mongoengine/dereference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/mongoengine/dereference.py -------------------------------------------------------------------------------- /mongoengine/django/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mongoengine/django/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/mongoengine/django/auth.py -------------------------------------------------------------------------------- /mongoengine/django/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/mongoengine/django/sessions.py -------------------------------------------------------------------------------- /mongoengine/django/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/mongoengine/django/shortcuts.py -------------------------------------------------------------------------------- /mongoengine/django/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/mongoengine/django/storage.py -------------------------------------------------------------------------------- /mongoengine/django/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/mongoengine/django/tests.py -------------------------------------------------------------------------------- /mongoengine/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/mongoengine/document.py -------------------------------------------------------------------------------- /mongoengine/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/mongoengine/fields.py -------------------------------------------------------------------------------- /mongoengine/python_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/mongoengine/python_support.py -------------------------------------------------------------------------------- /mongoengine/queryset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/mongoengine/queryset.py -------------------------------------------------------------------------------- /mongoengine/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/mongoengine/signals.py -------------------------------------------------------------------------------- /mongoengine/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/mongoengine/tests.py -------------------------------------------------------------------------------- /python-mongoengine.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/python-mongoengine.spec -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pymongo -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/tests/fixtures.py -------------------------------------------------------------------------------- /tests/mongoengine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/tests/mongoengine.png -------------------------------------------------------------------------------- /tests/test_all_warnings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/tests/test_all_warnings.py -------------------------------------------------------------------------------- /tests/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/tests/test_connection.py -------------------------------------------------------------------------------- /tests/test_dereference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/tests/test_dereference.py -------------------------------------------------------------------------------- /tests/test_django.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/tests/test_django.py -------------------------------------------------------------------------------- /tests/test_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/tests/test_document.py -------------------------------------------------------------------------------- /tests/test_dynamic_document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/tests/test_dynamic_document.py -------------------------------------------------------------------------------- /tests/test_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/tests/test_fields.py -------------------------------------------------------------------------------- /tests/test_queryset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/tests/test_queryset.py -------------------------------------------------------------------------------- /tests/test_replicaset_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/tests/test_replicaset_connection.py -------------------------------------------------------------------------------- /tests/test_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hmarr/mongoengine/HEAD/tests/test_signals.py --------------------------------------------------------------------------------