├── .gitignore ├── LICENSE ├── django_elasticsearch ├── __init__.py ├── client.py ├── contrib │ ├── __init__.py │ └── restframework │ │ ├── __init__.py │ │ ├── base.py │ │ ├── restframework2.py │ │ └── restframework3.py ├── managers.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── query.py ├── serializers.py ├── tests │ ├── __init__.py │ ├── test_indexable.py │ ├── test_qs.py │ ├── test_restframework.py │ ├── test_serializer.py │ ├── test_views.py │ └── utils.py ├── utils.py └── views.py ├── readme.md ├── requirements.txt ├── setup.py └── test_project ├── manage.py ├── requirements.txt ├── test_app ├── __init__.py ├── models.py ├── templates │ └── 404.html ├── urls.py └── views.py ├── test_project ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *~ 3 | .tox 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/LICENSE -------------------------------------------------------------------------------- /django_elasticsearch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/__init__.py -------------------------------------------------------------------------------- /django_elasticsearch/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/client.py -------------------------------------------------------------------------------- /django_elasticsearch/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_elasticsearch/contrib/restframework/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/contrib/restframework/__init__.py -------------------------------------------------------------------------------- /django_elasticsearch/contrib/restframework/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/contrib/restframework/base.py -------------------------------------------------------------------------------- /django_elasticsearch/contrib/restframework/restframework2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/contrib/restframework/restframework2.py -------------------------------------------------------------------------------- /django_elasticsearch/contrib/restframework/restframework3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/contrib/restframework/restframework3.py -------------------------------------------------------------------------------- /django_elasticsearch/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/managers.py -------------------------------------------------------------------------------- /django_elasticsearch/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/migrations/0001_initial.py -------------------------------------------------------------------------------- /django_elasticsearch/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_elasticsearch/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/models.py -------------------------------------------------------------------------------- /django_elasticsearch/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/query.py -------------------------------------------------------------------------------- /django_elasticsearch/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/serializers.py -------------------------------------------------------------------------------- /django_elasticsearch/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/tests/__init__.py -------------------------------------------------------------------------------- /django_elasticsearch/tests/test_indexable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/tests/test_indexable.py -------------------------------------------------------------------------------- /django_elasticsearch/tests/test_qs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/tests/test_qs.py -------------------------------------------------------------------------------- /django_elasticsearch/tests/test_restframework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/tests/test_restframework.py -------------------------------------------------------------------------------- /django_elasticsearch/tests/test_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/tests/test_serializer.py -------------------------------------------------------------------------------- /django_elasticsearch/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/tests/test_views.py -------------------------------------------------------------------------------- /django_elasticsearch/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/tests/utils.py -------------------------------------------------------------------------------- /django_elasticsearch/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/utils.py -------------------------------------------------------------------------------- /django_elasticsearch/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/django_elasticsearch/views.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/setup.py -------------------------------------------------------------------------------- /test_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/test_project/manage.py -------------------------------------------------------------------------------- /test_project/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/test_project/requirements.txt -------------------------------------------------------------------------------- /test_project/test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/test_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/test_project/test_app/models.py -------------------------------------------------------------------------------- /test_project/test_app/templates/404.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/test_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/test_project/test_app/urls.py -------------------------------------------------------------------------------- /test_project/test_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/test_project/test_app/views.py -------------------------------------------------------------------------------- /test_project/test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/test_project/test_project/settings.py -------------------------------------------------------------------------------- /test_project/test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/test_project/test_project/urls.py -------------------------------------------------------------------------------- /test_project/test_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/test_project/test_project/wsgi.py -------------------------------------------------------------------------------- /test_project/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liberation/django-elasticsearch/HEAD/test_project/tox.ini --------------------------------------------------------------------------------