{
"info": {
"author": "Rasika Amaratissa",
"author_email": "rasika.am@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 3 - Alpha",
"Framework :: Django :: 2.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
"description": "=============================\nDjango Elastic App Search\n=============================\n\n.. image:: https://badge.fury.io/py/django-elastic-appsearch.svg\n :target: https://badge.fury.io/py/django-elastic-appsearch\n\n.. image:: https://travis-ci.org/CorrosiveKid/django_elastic_appsearch.svg?branch=master\n :target: https://travis-ci.org/CorrosiveKid/django_elastic_appsearch\n\n.. image:: https://codecov.io/gh/CorrosiveKid/django_elastic_appsearch/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/CorrosiveKid/django_elastic_appsearch\n\n.. image:: https://readthedocs.org/projects/django-elastic-appsearch/badge/?version=latest\n :target: https://django-elastic-appsearch.readthedocs.io/en/latest/?badge=latest\n\n.. image:: https://badgen.net/dependabot/CorrosiveKid/django_elastic_appsearch?icon=dependabot\n :target: https://dependabot.com/\n\nIntegrate your Django Project with Elastic App Search with ease.\n\nDocumentation\n-------------\n\nThe full documentation is at https://django_elastic_appsearch.readthedocs.io. Read our step-by-step guide on integrating App Search with your existing Django project over at Medium_.\n\n.. _Medium: https://medium.com/@rasika.am/integrating-a-django-project-with-elastic-app-search-fb9f16726b5c\n\nDependencies\n------------\n\n* `elastic-app-search `_\n* `serpy `_\n\nUsage\n-----\nInstalling\n==========\n\nInstall Django Elastic App Search::\n\n pip install django_elastic_appsearch\n\nAdd it to your `INSTALLED_APPS`:\n\n.. code-block:: python\n\n INSTALLED_APPS = (\n ...\n 'django_elastic_appsearch',\n ...\n )\n\nAdd the Elastic App Search URL and Key to your settings module:\n\n.. code-block:: python\n\n APPSEARCH_HOST = 'localhost:3002'\n APPSEARCH_API_KEY = 'some_appsearch_api_token'\n\nConfiguring app search indexable models\n=======================================\n\nConfigure the Django models you want to index to Elastic App Search. You can do this by inheriting from the ``AppSearchModel``, and then setting some meta options.\n\n``AppsearchMeta.appsearch_engine_name`` - Defines which engine in your app search instance your model will be indexed to.\n\n``AppsearchMeta.appsearch_serialiser_class`` - Defines how your model object will be serialised when sent to your elastic app search instance. The serialiser and fields used here derives from `Serpy `__, and you can use any of the serpy features like method fields.\n\nExample:\n\n.. code-block:: python\n\n from django_elastic_appsearch.orm import AppSearchModel\n from django_elastic_appsearch import serialisers\n\n class CarSerialiser(serialisers.AppSearchSerialiser):\n full_name = serialisers.MethodField()\n make = serialisers.StrField()\n model = serialisers.StrField()\n manufactured_year = serialisers.Field()\n\n def get_full_name(self, instance):\n return '{} {}'.format(make, model)\n\n\n class Car(AppSearchModel):\n\n class AppsearchMeta:\n appsearch_engine_name = 'cars'\n appsearch_serialiser_class = CarSerialiser\n\n make = models.CharField(max_length=100)\n model = models.CharField(max_length=100)\n manufactured_year = models.CharField(max_length=4)\n\nUsing model and queryset methods to index and delete documents\n==============================================================\n\nThen you can call ``index_to_appsearch`` and ``delete_from_appsearch`` from your model objects.\n\nSend the car with id 25 to app search.\n\n.. code-block:: python\n\n from mymodels import Car\n\n car = Car.objects.get(id=25)\n car.index_to_appsearch()\n\nDelete the car with id 21 from app search.\n\n.. code-block:: python\n\n from mymodels import Car\n\n car = Car.objects.get(id=21)\n car.delete_from_appsearch()\n\nYou can also call ``index_to_appsearch`` and ``delete_from_appsearch`` on QuerySets of ``AppSearchModel``\n\nSend all cars where the make is 'Toyota' to app search.\n\n.. code-block:: python\n\n cars = Car.objects.filter(make='Toyota')\n cars.index_to_appsearch()\n\nDelete all cars where the make is 'Saab' from app search\n\n.. code-block:: python\n\n cars = Car.objects.filter(make='Saab')\n cars.delete_from_appsearch()\n\nUse with your own custom queryset managers\n==========================================\n\nIf you want to specify custom managers which also has this functionality, you can inherit from ``django_elastic_appsearch.orm.AppSearchQuerySet``\n\n.. code-block:: python\n\n from django_elastic_appsearch.orm import AppSearchModel, AppSearchQuerySet\n\n class MyCustomQuerySetManager(AppSearchQuerySet):\n def my_custom_queryset_feature(self):\n # Do Something cool\n pass\n\n class MyCustomModel(AppSearchModel):\n field_1 = models.CharField(max_length=100)\n\n # Set the custom manager\n objects = MyCustomQuerySetManager.as_manager()\n\nSettings\n========\n\nThis package provides various Django settings entries you can use to configure your connection to the Elastic App Search instance you're using.\n\nAPPSEARCH_HOST\n^^^^^^^^^^^^^^\n\n* Required: Yes\n* Default: No default value\n\nThis is a **required** setting to tell your Django application which Elastic App Search instance to connect with.\n\n.. code-block:: python\n\n APPSEARCH_HOST = 'localhost:3002'\n\nAPPSEARCH_API_KEY\n^^^^^^^^^^^^^^^^^\n\n* Required: Yes\n* Default: No default value\n\nThis is a **required** setting to tell your Django application the private key to use to talk to your Elastic App Search instance.\n\n.. code-block:: python\n\n APPSEARCH_API_KEY = 'private-key'\n\nAPPSEARCH_USE_HTTPS\n^^^^^^^^^^^^^^^^^^^\n\n* Required: No\n* Default: ``True``\n\nThis is an **optional** setting to configure whether to use HTTPS or not when your Django application communicates with your Elastic App Search instances. It defaults to ``True`` if it's not set. This might be useful when you're running your Django project against a local Elastic App Search instance. It's insecure to have this as ``False`` in a production environment, so make sure to change to ``True`` in your production version.\n\n.. code-block:: python\n\n APPSEARCH_USE_HTTPS = False\n\nAPPSEARCH_CHUNK_SIZE\n^^^^^^^^^^^^^^^^^^^^\n\n* Required: No\n* Default: ``100``\n\nThis is an **optional** setting to configure the chunk size when doing queryset indexing/deleting. Elastic App Search supports upto a 100 documents in one index/destroy request. With this setting, you can change it to your liking. It defaults to the maximum of ``100`` when this is not set. This might be useful when you want to reduce the size of a request to your Elastic App Search instance when your documents have a lot of fields/data.\n\n.. code-block:: python\n\n APPSEARCH_CHUNK_SIZE = 50\n\nAPPSEARCH_INDEXING_ENABLED\n^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n* Required: No\n* Default: ``True``\n\nThis is an **optional** setting to configure if you want to disable indexing to your Elastic App Search instance. This is useful when you want to disable indexing without changing any code. When it's set to ``False``, any code where you use ``index_to_appsearch()`` or ``delete_from_appsearch()`` will not do anything. It's set to ``True`` by default when it's not set.\n\n.. code-block:: python\n\n APPSEARCH_INDEXING_ENABLED = True\n\nExample with all settings entries\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n.. code-block:: python\n\n APPSEARCH_HOST = 'localhost:3002'\n APPSEARCH_API_KEY = 'private-key'\n APPSEARCH_USE_HTTPS = False\n APPSEARCH_CHUNK_SIZE = 50\n APPSEARCH_INDEXING_ENABLED = True\n\nWriting Tests\n=============\n\nThis package provides a test case mixin called ``MockedAppSearchTestCase`` which makes it easier for you to write test cases against ``AppSearchModel``'s without actually having to run an Elastic App Search instance during tests.\n\nAll you have to do is inherit the mixin, and all the calls to Elastic App Search will be mocked. Example below.\n\n.. code-block:: python\n\n from django.test import TestCase\n from django_elastic_appsearch.test import MockedAppSearchTestCase\n from myapp.test.factories import CarFactory\n\n class BookTestCase(MockedAppSearchTestCase, TestCase):\n def test_indexing_book(self):\n car = CarFactory()\n car.save()\n car.index_to_appsearch()\n\n self.assertAppSearchModelIndexCallCount(1)\n\nYou will have access to the following methods to check call counts to different mocked app search methods.\n\n``self.assertAppSearchQuerySetIndexCallCount`` \u2014 Check the number of times index_to_appsearch was called on a appsearch model querysets.\n\n``self.assertAppSearchQuerySetDeleteCallCount`` \u2014 Check the number of times delete_from_appsearch was called on an appsearch model querysets.\n\n``self.assertAppSearchModelIndexCallCount`` \u2014 Check the number of times index_to_appsearch was called on an appsearch model objects.\n\n``self.assertAppSearchModelDeleteCallCount`` \u2014 Check the number of times delete_from_appsearch was called on an appsearch model objects.\n\nUsing the elastic app search python client\n==========================================\n\nWe use the official `elastic app search python client `_ under the hood to communicate with the app search instance. So if needed, you can access the app search instance directly and use the functionality of the official elastic app search `client `_. Example below.\n\n.. code-block:: python\n\n from django_elastic_appsearch.clients import get_api_v1_client\n\n client = get_api_v1_client()\n client.search('cars', 'Toyota Corolla', {})\n\nContributing\n------------\n\nContributors are welcome!\n\n* Prior to opening a pull request, please create an issue to discuss the change/feature you've written/thinking of writing if it doesn't already exist.\n\n* Please write simple code and concise documentation, when appropriate.\n\n* Please write test cases to cover the code you've written, where possible.\n\n* Read the `Contributing `_ section of our documentation for more information around contributing to this project.\n\nRunning Tests\n-------------\n\nDoes the code actually work?\n\n::\n\n $ pipenv install --dev\n $ pipenv shell\n (django_elastic_appsearch) $ tox\n\nCredits\n-------\n\nTools used in rendering this package:\n\n* Cookiecutter_\n* `cookiecutter-djangopackage`_\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`cookiecutter-djangopackage`: https://github.com/pydanny/cookiecutter-djangopackage\n\n\n\n\nHistory\n-------\n\n0.5.4 (2019-10-02)\n==================\n\n* Dependency upgrades\n\n0.5.3 (2019-08-28)\n==================\n\n* Improve documentation\n* Refactor settings name ``APPSEARCH_URL`` -> ``APPSEARCH_HOST``\n\n0.5.1 (2019-08-26)\n==================\n\n* Improve test coverage\n* Improve documentation\n* Add serpy as an official dependency\n* Bump dependency versions\n* Add code of conduct\n\n\n0.4.2 (2019-08-16)\n==================\n\n* Switch to the new official Elastic App Search python client\n* Documentation improvements\n\n\n0.2.3 (2019-08-02)\n==================\n\n* Use Pipenv for dependency management\n* Configure Dependabot for automatic dependency upgrades\n* Remove support for Python 3.4\n* Documentation improvements\n\n\n0.2.2 (2019-07-29)\n==================\n\n* Bug fixes\n* Documentation improvements\n\n\n0.1.0 (2019-07-26)\n==================\n\n* First release on PyPI.\n\n\n",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/CorrosiveKid/django_elastic_appsearch",
"keywords": "django_elastic_appsearch",
"license": "MIT",
"maintainer": "",
"maintainer_email": "",
"name": "django-elastic-appsearch",
"package_url": "https://pypi.org/project/django-elastic-appsearch/",
"platform": "",
"project_url": "https://pypi.org/project/django-elastic-appsearch/",
"project_urls": {
"Homepage": "https://github.com/CorrosiveKid/django_elastic_appsearch"
},
"release_url": "https://pypi.org/project/django-elastic-appsearch/0.5.4/",
"requires_dist": [
"elastic-app-search",
"serpy"
],
"requires_python": "",
"summary": "Integrate your Django Project with Elastic App Search with ease.",
"version": "0.5.4"
},
"last_serial": 5915636,
"releases": {
"0.1.0": [
{
"comment_text": "",
"digests": {
"md5": "4e8c454e2fa61361b8b263b515fbc97a",
"sha256": "cb87b4858ad99e84a68e56cbf8c89fc1d5198146243ee93f67ed608e5fd0c548"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4e8c454e2fa61361b8b263b515fbc97a",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 8270,
"upload_time": "2019-07-26T04:57:56",
"url": "https://files.pythonhosted.org/packages/c4/83/540949e713e3afbaa7500f6be709d752b26dfa5df328fca12f7b96ba4ef8/django_elastic_appsearch-0.1.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "59d17d77251846911864c0136e122262",
"sha256": "da410569a42c8d7e0828c1419ddbd1ba428495ea46d1da0c67e737a26e1c8b14"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.1.0.tar.gz",
"has_sig": false,
"md5_digest": "59d17d77251846911864c0136e122262",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 7694,
"upload_time": "2019-07-26T04:57:58",
"url": "https://files.pythonhosted.org/packages/bc/a3/6be362d6e8a539c77f23245f274c358e071e69060a13bee5bceaa80c359a/django_elastic_appsearch-0.1.0.tar.gz"
}
],
"0.2.1": [
{
"comment_text": "",
"digests": {
"md5": "a943ee067a072ad6903643e9fc96eb06",
"sha256": "fd4dd1085703fa87469ff7b84793aec7020621851ca2ba28163a9c0cf0cf45b3"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.2.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "a943ee067a072ad6903643e9fc96eb06",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 9840,
"upload_time": "2019-07-26T06:10:06",
"url": "https://files.pythonhosted.org/packages/b3/54/2052db782a9b5d16b54c51f29afa5df164b608488d971a75c8be5b19f5e8/django_elastic_appsearch-0.2.1-py2.py3-none-any.whl"
}
],
"0.2.2": [
{
"comment_text": "",
"digests": {
"md5": "4c0e34176524201785cb2fb9d6c01b68",
"sha256": "de22262306d099c477cc191ae9d81f7d350bb69b19572a6edf77f0f00b8209e2"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.2.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "4c0e34176524201785cb2fb9d6c01b68",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 9951,
"upload_time": "2019-07-29T00:56:40",
"url": "https://files.pythonhosted.org/packages/85/53/1f6d48f32d5eda90eb03b41b1700ea610cb38d045707f138bbe2165868ee/django_elastic_appsearch-0.2.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6db39913da9168c22d32513b10466e78",
"sha256": "e53821b17083b9f12dccb6288b7bf531cddc9b7fdefca5981de5c3ccbe2540eb"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.2.2.tar.gz",
"has_sig": false,
"md5_digest": "6db39913da9168c22d32513b10466e78",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8728,
"upload_time": "2019-07-29T00:56:42",
"url": "https://files.pythonhosted.org/packages/13/76/d621d6d122b622830ac55845cfa4f489685966ddc02d36ae416bcd7d0e26/django_elastic_appsearch-0.2.2.tar.gz"
}
],
"0.2.3": [
{
"comment_text": "",
"digests": {
"md5": "de06095027d6a825cb797ca0e752ca38",
"sha256": "7b112037311a40596aacf2388ecbc025590b909bb969686f6188b5ab7f6fcf1a"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.2.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "de06095027d6a825cb797ca0e752ca38",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 8743,
"upload_time": "2019-08-02T06:22:33",
"url": "https://files.pythonhosted.org/packages/44/44/c743039b5a2817bd8e6abefd310717ccd0afc693f60113b5124588b5532e/django_elastic_appsearch-0.2.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "a7019535ffaeb975db33a5312e80795a",
"sha256": "e4b17769879cca3e9388ae8795dd9add097e0bb50fc0ae8328a76c0d44747365"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.2.3.tar.gz",
"has_sig": false,
"md5_digest": "a7019535ffaeb975db33a5312e80795a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 8792,
"upload_time": "2019-08-02T06:22:35",
"url": "https://files.pythonhosted.org/packages/e2/7c/47aaa2d32413b7ead8a92f881171f6cb97fed1881362855b8f9a00751f8d/django_elastic_appsearch-0.2.3.tar.gz"
}
],
"0.4.2": [
{
"comment_text": "",
"digests": {
"md5": "77339eb94225a35d5c1f8f2e8faecfd0",
"sha256": "71ef2322039ba4a0d832e64aa543a34d82f286af6b03fe52c2c1fed272503011"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.4.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "77339eb94225a35d5c1f8f2e8faecfd0",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 8930,
"upload_time": "2019-08-16T01:40:43",
"url": "https://files.pythonhosted.org/packages/e8/56/d8ae7e84a20af4c64fa72da83121bf003963dddf418a498bd8b30e2d078d/django_elastic_appsearch-0.4.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ede11c6061ce8077df5c402f185996ca",
"sha256": "df635a6da86cba5b90141039d9f834c0e572edc67aa66e4c89377fd46d6e883c"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.4.2.tar.gz",
"has_sig": false,
"md5_digest": "ede11c6061ce8077df5c402f185996ca",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 9026,
"upload_time": "2019-08-16T01:40:45",
"url": "https://files.pythonhosted.org/packages/e1/0b/ad9fc74e20b5f92814c8e724498dec62f3bc4b6c949a148e97977f2a8a76/django_elastic_appsearch-0.4.2.tar.gz"
}
],
"0.5.1": [
{
"comment_text": "",
"digests": {
"md5": "1dab82a021ccc6dacbc46d9578ca2575",
"sha256": "b3366423e876559f27b76bb835d14e486b23dc629fdd7ed7d604c6b4002ec6a8"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.5.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1dab82a021ccc6dacbc46d9578ca2575",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 9811,
"upload_time": "2019-08-26T03:54:21",
"url": "https://files.pythonhosted.org/packages/8e/cd/440eeaf1e3abfd6f0204aadfd37f1ee70719a68b9cbb9c667f83ddce5842/django_elastic_appsearch-0.5.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "443734da7456c39cd9c9f871ab6c673b",
"sha256": "ac4e0faaef9920c7797259042c896a5f70d00ff1286a66ebb597bde157599079"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.5.1.tar.gz",
"has_sig": false,
"md5_digest": "443734da7456c39cd9c9f871ab6c673b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11150,
"upload_time": "2019-08-26T03:54:23",
"url": "https://files.pythonhosted.org/packages/13/08/0c9c6603c84d6b72346711dfe2046b1a0a3bfd394a4f3469a3b9c5b9a702/django_elastic_appsearch-0.5.1.tar.gz"
}
],
"0.5.3": [
{
"comment_text": "",
"digests": {
"md5": "1391697f16120f34b944a2cbc623a7eb",
"sha256": "3283297145d9649b9c629b55266ff70938184834d408bd3347682861425ba025"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.5.3-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1391697f16120f34b944a2cbc623a7eb",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 10599,
"upload_time": "2019-08-28T00:06:08",
"url": "https://files.pythonhosted.org/packages/f2/5c/af88951a976e32c33ec57ff10bef0d64d02884520750fcc161aed4a1565b/django_elastic_appsearch-0.5.3-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "44d71a6393a1cb6e7b2a7f8899d98038",
"sha256": "2daf0f8e7a6f1f80e2d04c1f7748480275269ca3ad7ba8721b7f85f9939bf4a3"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.5.3.tar.gz",
"has_sig": false,
"md5_digest": "44d71a6393a1cb6e7b2a7f8899d98038",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12306,
"upload_time": "2019-08-28T00:06:11",
"url": "https://files.pythonhosted.org/packages/00/de/bf0b591d189c308d9c8308f9a38b5e15a5e4730cdc5397b62495611d1373/django_elastic_appsearch-0.5.3.tar.gz"
}
],
"0.5.4": [
{
"comment_text": "",
"digests": {
"md5": "b3b8a89a3eadcdb6760823008107c394",
"sha256": "2e1d89a4858e4d13541d8b2f24f773e049d55076e9942cd2b89257f0d05e43c8"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.5.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b3b8a89a3eadcdb6760823008107c394",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 10618,
"upload_time": "2019-10-02T01:13:45",
"url": "https://files.pythonhosted.org/packages/3e/67/794a15e91f42f7e87e68bb218863439d3de67c52d21b3f5ed938a722d9a1/django_elastic_appsearch-0.5.4-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "30f0e0f3014f84f473224a49a03efa1c",
"sha256": "cf2adc67fa8084ec5d4b733a34e51e4c4f35efab24b0c3b010756cd6c01713df"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.5.4.tar.gz",
"has_sig": false,
"md5_digest": "30f0e0f3014f84f473224a49a03efa1c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12355,
"upload_time": "2019-10-02T01:13:47",
"url": "https://files.pythonhosted.org/packages/38/da/3c3ae85d0c700f907606efd7e58cb8430d891b8dba79b4cd286386fcfa11/django_elastic_appsearch-0.5.4.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "b3b8a89a3eadcdb6760823008107c394",
"sha256": "2e1d89a4858e4d13541d8b2f24f773e049d55076e9942cd2b89257f0d05e43c8"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.5.4-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "b3b8a89a3eadcdb6760823008107c394",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 10618,
"upload_time": "2019-10-02T01:13:45",
"url": "https://files.pythonhosted.org/packages/3e/67/794a15e91f42f7e87e68bb218863439d3de67c52d21b3f5ed938a722d9a1/django_elastic_appsearch-0.5.4-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "30f0e0f3014f84f473224a49a03efa1c",
"sha256": "cf2adc67fa8084ec5d4b733a34e51e4c4f35efab24b0c3b010756cd6c01713df"
},
"downloads": -1,
"filename": "django_elastic_appsearch-0.5.4.tar.gz",
"has_sig": false,
"md5_digest": "30f0e0f3014f84f473224a49a03efa1c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 12355,
"upload_time": "2019-10-02T01:13:47",
"url": "https://files.pythonhosted.org/packages/38/da/3c3ae85d0c700f907606efd7e58cb8430d891b8dba79b4cd286386fcfa11/django_elastic_appsearch-0.5.4.tar.gz"
}
]
}