├── .github └── workflows │ └── django.yml ├── .gitignore ├── .travis.yml ├── Jenkinsfile ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── oscar_elasticsearch ├── __init__.py ├── exceptions.py └── search │ ├── __init__.py │ ├── api │ ├── __init__.py │ ├── autocomplete.py │ ├── base.py │ ├── category.py │ ├── lookup.py │ ├── pagination.py │ ├── product.py │ └── search.py │ ├── apps.py │ ├── backend.py │ ├── config.py │ ├── constants.py │ ├── facets.py │ ├── fixtures │ ├── catalogue │ │ └── catalogue.json │ └── search │ │ └── auth.json │ ├── format.py │ ├── forms.py │ ├── helpers.py │ ├── indexing │ ├── __init__.py │ ├── indexer.py │ └── settings.py │ ├── locale │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ ├── it │ │ └── LC_MESSAGES │ │ │ ├── django.mo │ │ │ └── django.po │ └── nl │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po │ ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── determine_facets.py │ │ ├── update_index_categories.py │ │ ├── update_index_products.py │ │ ├── update_index_registered.py │ │ └── update_oscar_index.py │ ├── mappings │ ├── __init__.py │ ├── categories.py │ ├── mixins.py │ └── products │ │ ├── __init__.py │ │ ├── mappings.py │ │ └── resources.py │ ├── registry.py │ ├── settings.py │ ├── signal_handlers.py │ ├── signals.py │ ├── static │ └── oscar │ │ └── js │ │ └── search │ │ ├── autocomplete.js │ │ └── bootstrap3-typeahead.js │ ├── suggestions.py │ ├── templates │ └── oscar │ │ ├── catalogue │ │ └── browse.html │ │ ├── partials │ │ └── extrascripts.html │ │ └── search │ │ ├── partials │ │ └── facet.html │ │ └── results.html │ ├── tests.py │ ├── update.py │ ├── utils.py │ └── views │ ├── __init__.py │ ├── base.py │ ├── catalogue.py │ └── search.py ├── pylintrc ├── sandbox ├── __init__.py ├── assortment │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── index.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ └── models.py ├── manage.py ├── settings.py ├── urls.py └── wsgi.py └── setup.py /.github/workflows/django.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/.github/workflows/django.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/.travis.yml -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/README.md -------------------------------------------------------------------------------- /oscar_elasticsearch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/__init__.py -------------------------------------------------------------------------------- /oscar_elasticsearch/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/exceptions.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/__init__.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oscar_elasticsearch/search/api/autocomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/api/autocomplete.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/api/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/api/base.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/api/category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/api/category.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/api/lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/api/lookup.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/api/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/api/pagination.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/api/product.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/api/product.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/api/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/api/search.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/apps.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/backend.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/config.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/constants.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/facets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/facets.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/fixtures/catalogue/catalogue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/fixtures/catalogue/catalogue.json -------------------------------------------------------------------------------- /oscar_elasticsearch/search/fixtures/search/auth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/fixtures/search/auth.json -------------------------------------------------------------------------------- /oscar_elasticsearch/search/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/format.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/forms.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/helpers.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/indexing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/indexing/__init__.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/indexing/indexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/indexing/indexer.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/indexing/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/indexing/settings.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/locale/de/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/locale/de/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /oscar_elasticsearch/search/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /oscar_elasticsearch/search/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /oscar_elasticsearch/search/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /oscar_elasticsearch/search/locale/es/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/locale/es/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /oscar_elasticsearch/search/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /oscar_elasticsearch/search/locale/fr/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/locale/fr/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /oscar_elasticsearch/search/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /oscar_elasticsearch/search/locale/it/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/locale/it/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /oscar_elasticsearch/search/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /oscar_elasticsearch/search/locale/nl/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/locale/nl/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /oscar_elasticsearch/search/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /oscar_elasticsearch/search/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oscar_elasticsearch/search/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oscar_elasticsearch/search/management/commands/determine_facets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/management/commands/determine_facets.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/management/commands/update_index_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/management/commands/update_index_categories.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/management/commands/update_index_products.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/management/commands/update_index_products.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/management/commands/update_index_registered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/management/commands/update_index_registered.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/management/commands/update_oscar_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/management/commands/update_oscar_index.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/mappings/__init__.py: -------------------------------------------------------------------------------- 1 | from .categories import * 2 | -------------------------------------------------------------------------------- /oscar_elasticsearch/search/mappings/categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/mappings/categories.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/mappings/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/mappings/mixins.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/mappings/products/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/mappings/products/__init__.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/mappings/products/mappings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/mappings/products/mappings.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/mappings/products/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/mappings/products/resources.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/registry.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/settings.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/signal_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/signal_handlers.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/signals.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/static/oscar/js/search/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/static/oscar/js/search/autocomplete.js -------------------------------------------------------------------------------- /oscar_elasticsearch/search/static/oscar/js/search/bootstrap3-typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/static/oscar/js/search/bootstrap3-typeahead.js -------------------------------------------------------------------------------- /oscar_elasticsearch/search/suggestions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/suggestions.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/templates/oscar/catalogue/browse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/templates/oscar/catalogue/browse.html -------------------------------------------------------------------------------- /oscar_elasticsearch/search/templates/oscar/partials/extrascripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/templates/oscar/partials/extrascripts.html -------------------------------------------------------------------------------- /oscar_elasticsearch/search/templates/oscar/search/partials/facet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/templates/oscar/search/partials/facet.html -------------------------------------------------------------------------------- /oscar_elasticsearch/search/templates/oscar/search/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/templates/oscar/search/results.html -------------------------------------------------------------------------------- /oscar_elasticsearch/search/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/tests.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/update.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/utils.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/views/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oscar_elasticsearch/search/views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/views/base.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/views/catalogue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/views/catalogue.py -------------------------------------------------------------------------------- /oscar_elasticsearch/search/views/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/oscar_elasticsearch/search/views/search.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/pylintrc -------------------------------------------------------------------------------- /sandbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox/assortment/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox/assortment/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/sandbox/assortment/admin.py -------------------------------------------------------------------------------- /sandbox/assortment/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/sandbox/assortment/apps.py -------------------------------------------------------------------------------- /sandbox/assortment/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/sandbox/assortment/index.py -------------------------------------------------------------------------------- /sandbox/assortment/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/sandbox/assortment/migrations/0001_initial.py -------------------------------------------------------------------------------- /sandbox/assortment/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sandbox/assortment/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/sandbox/assortment/models.py -------------------------------------------------------------------------------- /sandbox/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/sandbox/manage.py -------------------------------------------------------------------------------- /sandbox/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/sandbox/settings.py -------------------------------------------------------------------------------- /sandbox/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/sandbox/urls.py -------------------------------------------------------------------------------- /sandbox/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/sandbox/wsgi.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-oscar/django-oscar-elasticsearch/HEAD/setup.py --------------------------------------------------------------------------------