├── .bumpversion.cfg ├── .coveragerc ├── .editorconfig ├── .flake8 ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .isort.cfg ├── .prospector.yml ├── .travis.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── SECURITY.rst ├── django_zombodb ├── __init__.py ├── admin_mixins.py ├── apps.py ├── base_indexes.py ├── exceptions.py ├── helpers.py ├── indexes.py ├── operations.py ├── querysets.py ├── serializers.py ├── static │ └── django_zombodb │ │ └── js │ │ └── hide_show_score.js └── templates │ └── django_zombodb │ └── base.html ├── docs ├── Makefile ├── authors.rst ├── changelog.rst ├── conf.py ├── contributing.rst ├── django_zombodb.rst ├── index.rst ├── installation.rst ├── integrating.rst ├── make.bat ├── modules.rst └── searching.rst ├── example ├── README.md ├── example │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── requirements.txt └── restaurants │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── data │ └── yellowpages_com-restaurant_sample.csv │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── filldata.py │ ├── migrations │ ├── 0001_squashed_0004_auto_20190718_2025.py │ └── __init__.py │ └── models.py ├── requirements.txt ├── requirements ├── base.in ├── dev.in ├── dev.txt ├── doc.in ├── doc.txt ├── prod.in ├── quality.in ├── quality.txt ├── test.in ├── test.txt ├── travis.in └── travis.txt ├── runtests.py ├── setup.cfg ├── setup.py ├── test_manage.py ├── tests ├── __init__.py ├── migrations │ ├── 0001_setup_extensions.py │ ├── 0002_datetimearraymodel_integerarraymodel.py │ └── __init__.py ├── models.py ├── restaurants │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ └── models.py ├── settings.py ├── test_admin_mixins.py ├── test_apps.py ├── test_index.py ├── test_querysets.py └── urls.py └── tox.ini /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/.editorconfig -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.prospector.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/.prospector.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/SECURITY.rst -------------------------------------------------------------------------------- /django_zombodb/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.3.0' 2 | -------------------------------------------------------------------------------- /django_zombodb/admin_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/django_zombodb/admin_mixins.py -------------------------------------------------------------------------------- /django_zombodb/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/django_zombodb/apps.py -------------------------------------------------------------------------------- /django_zombodb/base_indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/django_zombodb/base_indexes.py -------------------------------------------------------------------------------- /django_zombodb/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/django_zombodb/exceptions.py -------------------------------------------------------------------------------- /django_zombodb/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/django_zombodb/helpers.py -------------------------------------------------------------------------------- /django_zombodb/indexes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/django_zombodb/indexes.py -------------------------------------------------------------------------------- /django_zombodb/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/django_zombodb/operations.py -------------------------------------------------------------------------------- /django_zombodb/querysets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/django_zombodb/querysets.py -------------------------------------------------------------------------------- /django_zombodb/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/django_zombodb/serializers.py -------------------------------------------------------------------------------- /django_zombodb/static/django_zombodb/js/hide_show_score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/django_zombodb/static/django_zombodb/js/hide_show_score.js -------------------------------------------------------------------------------- /django_zombodb/templates/django_zombodb/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/django_zombodb/templates/django_zombodb/base.html -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/django_zombodb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/docs/django_zombodb.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/integrating.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/docs/integrating.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/searching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/docs/searching.rst -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/example/README.md -------------------------------------------------------------------------------- /example/example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/example/example/settings.py -------------------------------------------------------------------------------- /example/example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/example/example/urls.py -------------------------------------------------------------------------------- /example/example/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/example/example/wsgi.py -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/example/requirements.txt -------------------------------------------------------------------------------- /example/restaurants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/restaurants/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/example/restaurants/admin.py -------------------------------------------------------------------------------- /example/restaurants/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/example/restaurants/apps.py -------------------------------------------------------------------------------- /example/restaurants/data/yellowpages_com-restaurant_sample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/example/restaurants/data/yellowpages_com-restaurant_sample.csv -------------------------------------------------------------------------------- /example/restaurants/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/restaurants/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/restaurants/management/commands/filldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/example/restaurants/management/commands/filldata.py -------------------------------------------------------------------------------- /example/restaurants/migrations/0001_squashed_0004_auto_20190718_2025.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/example/restaurants/migrations/0001_squashed_0004_auto_20190718_2025.py -------------------------------------------------------------------------------- /example/restaurants/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/restaurants/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/example/restaurants/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements/base.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/requirements/base.in -------------------------------------------------------------------------------- /requirements/dev.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/requirements/dev.in -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/doc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/requirements/doc.in -------------------------------------------------------------------------------- /requirements/doc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/requirements/doc.txt -------------------------------------------------------------------------------- /requirements/prod.in: -------------------------------------------------------------------------------- 1 | # Additional requirements go here 2 | -------------------------------------------------------------------------------- /requirements/quality.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/requirements/quality.in -------------------------------------------------------------------------------- /requirements/quality.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/requirements/quality.txt -------------------------------------------------------------------------------- /requirements/test.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/requirements/test.in -------------------------------------------------------------------------------- /requirements/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/requirements/test.txt -------------------------------------------------------------------------------- /requirements/travis.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/requirements/travis.in -------------------------------------------------------------------------------- /requirements/travis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/requirements/travis.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/setup.py -------------------------------------------------------------------------------- /test_manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/test_manage.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/migrations/0001_setup_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/tests/migrations/0001_setup_extensions.py -------------------------------------------------------------------------------- /tests/migrations/0002_datetimearraymodel_integerarraymodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/tests/migrations/0002_datetimearraymodel_integerarraymodel.py -------------------------------------------------------------------------------- /tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/restaurants/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/restaurants/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/tests/restaurants/admin.py -------------------------------------------------------------------------------- /tests/restaurants/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/tests/restaurants/apps.py -------------------------------------------------------------------------------- /tests/restaurants/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/tests/restaurants/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/restaurants/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/restaurants/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/tests/restaurants/models.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_admin_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/tests/test_admin_mixins.py -------------------------------------------------------------------------------- /tests/test_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/tests/test_apps.py -------------------------------------------------------------------------------- /tests/test_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/tests/test_index.py -------------------------------------------------------------------------------- /tests/test_querysets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/tests/test_querysets.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vintasoftware/django-zombodb/HEAD/tox.ini --------------------------------------------------------------------------------