{
"info": {
"author": "Frankie Dintino",
"author_email": "fdintino@theatlantic.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7"
],
"description": "django-select2-forms\n####################\n\n.. image:: https://travis-ci.org/theatlantic/django-select2-forms.svg?branch=master\n :target: https://travis-ci.org/theatlantic/django-select2-forms\n\n**django-select2-forms** is a project that makes available Django form\nfields that use the `Select2 javascript\nplugin `_. It was created by\ndevelopers at `The Atlantic `_.\n\nSupport\n=======\n\nBeing that Django added select2 support in 2.0, we will support up to that version\nfor compatibility purposes.\n\n* ~=v2.0.2: Python ~=2.7,~=3.6 | Django >=1.8,<2.1\n* ~=v2.1: Python ~=2.7,>=3.6,<3.8 | Django >=1.11,<2.1\n* ~=v3.0: __Python >=3.6,<3.9 | Django >=2.0,<2.1 (future release)__\n\nInstallation\n============\n\nThe recommended way to install is with pip::\n\n pip install django-select2-forms\n\nor, to install with pip from source::\n\n pip install -e git+git://github.com/theatlantic/django-select2-forms.git#egg=django-select2-forms\n\nIf the source is already checked out, use setuptools::\n\n python setup.py develop\n\nConfiguration\n=============\n\n``django-select2-forms`` serves static assets using\n`django.contrib.staticfiles `_,\nand so requires that ``\"select2\"`` be added to your settings'\n``INSTALLED_APPS``:\n\n.. code-block:: python\n\n INSTALLED_APPS = (\n # ...\n 'select2',\n )\n\nTo use django-select2-forms' ajax support, ``'select2.urls'`` must be\nincluded in your urls.py ``urlpatterns``:\n\n.. code-block:: python\n\n urlpatterns = patterns('',\n # ...\n url(r'^select2/', include('select2.urls')),\n )\n\nUsage\n=====\n\nThe simplest way to use ``django-select2-forms`` is to use\n``select2.fields.ForeignKey`` and ``select2.fields.ManyToManyField`` in\nplace of ``django.db.models.ForeignKey`` and\n``django.db.models.ManyToManyField``, respectively. These fields extend\ntheir django equivalents and take the same arguments, along with extra\noptional keyword arguments.\n\nselect2.fields.ForeignKey examples\n----------------------------------\n\nIn the following two examples, an \"entry\" is associated with only one\nauthor. The example below does not use ajax, but instead performs\nautocomplete filtering on the client-side using the ````\nelements (the labels of which are drawn from ``Author.__str__()``)\nin an html ````.\n\n.. code-block:: python\n\n @python_2_unicode_compatible\n class Author(models.Model):\n name = models.CharField(max_length=100)\n\n def __str__(self):\n return self.name\n\n class Entry(models.Model):\n author = select2.fields.ForeignKey(Author,\n overlay=\"Choose an author...\",\n on_delete=models.CASCADE)\n\nThis more advanced example autocompletes via ajax using the\n``Author.name`` field and limits the autocomplete search to\n``Author.objects.filter(active=True)``\n\n.. code-block:: python\n\n class Author(models.Model):\n name = models.CharField(max_length=100)\n active = models.BooleanField()\n\n class Entry(models.Model):\n author = select2.fields.ForeignKey(Author,\n limit_choices_to=models.Q(active=True),\n ajax=True,\n search_field='name',\n overlay=\"Choose an author...\",\n js_options={\n 'quiet_millis': 200,\n },\n on_delete=models.CASCADE)\n\nselect2.fields.ManyToManyField examples\n---------------------------------------\n\nIn the following basic example, entries can have more than one author.\nThis example does not do author name lookup via ajax, but populates\n```` elements in a ```` with ``Author.__unicode__()``\nfor labels.\n\n.. code-block:: python\n\n @python_2_unicode_compatible\n class Author(models.Model):\n name = models.CharField(max_length=100)\n\n def __str__(self):\n return self.name\n\n class Entry(models.Model):\n authors = select2.fields.ManyToManyField(Author)\n\nThe following \"kitchen sink\" example allows authors to be ordered, and\nuses ajax to autocomplete on two variants of an author's name.\n\n.. code-block:: python\n\n from django.db import models\n from django.db.models import Q\n import select2.fields\n import select2.models\n\n class Author(models.Model):\n name = models.CharField(max_length=100)\n alt_name = models.CharField(max_length=100, blank=True, null=True)\n\n class Entry(models.Model):\n categories = select2.fields.ManyToManyField(Author,\n through='EntryAuthors',\n ajax=True,\n search_field=lambda q: Q(name__icontains=q) | Q(alt_name__icontains=q),\n sort_field='position',\n js_options={'quiet_millis': 200})\n\nform field example\n------------------\n\nIf you don't need to use the ajax features of ``django-select2-forms``\nit is possible to use select2 on django forms without modifying your\nmodels. The select2 formfields exist in the ``select2.fields`` module\nand have the same class names as their standard django counterparts\n(``ChoiceField``, ``MultipleChoiceField``, ``ModelChoiceField``,\n``ModelMultipleChoiceField``). Here is the first ``ForeignKey`` example\nabove, done with django formfields.\n\n.. code-block:: python\n\n class AuthorManager(models.Manager):\n def as_choices(self):\n for author in self.all():\n yield (author.pk, force_text(author))\n\n @python_2_unicode_compatible\n class Author(models.Model):\n name = models.CharField(max_length=100)\n objects = AuthorManager()\n\n def __str__(self):\n return self.name\n\n class Entry(models.Model):\n author = models.ForeignKey(Author, on_delete=models.CASCADE)\n\n class EntryForm(forms.ModelForm):\n author = select2.fields.ChoiceField(\n choices=Author.objects.as_choices(),\n overlay=\"Choose an author...\")\n\n class Meta:\n model = Entry\n\nLicense\n=======\n\nThe django code is licensed under the `Simplified BSD\nLicense `_ and is\ncopyright The Atlantic Media Company. View the ``LICENSE`` file under\nthe root directory for complete license and copyright information.\n\nThe Select2 javascript library included is licensed under the `Apache\nSoftware Foundation License Version\n2.0 `_. View the file\n``select2/static/select2/select2/LICENSE`` for complete license and\ncopyright information about the Select2 javascript library.\n",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/theatlantic/django-select2-forms",
"keywords": "",
"license": "BSD",
"maintainer": "",
"maintainer_email": "",
"name": "django-select2-forms",
"package_url": "https://pypi.org/project/django-select2-forms/",
"platform": "any",
"project_url": "https://pypi.org/project/django-select2-forms/",
"project_urls": {
"Homepage": "https://github.com/theatlantic/django-select2-forms"
},
"release_url": "https://pypi.org/project/django-select2-forms/2.1.0/",
"requires_dist": null,
"requires_python": "",
"summary": "Django form fields using the Select2 jQuery plugin",
"version": "2.1.0"
},
"last_serial": 5688520,
"releases": {
"1.1.0": [
{
"comment_text": "",
"digests": {
"md5": "da1f2ac71a56d34a49a7fe47a050a7b3",
"sha256": "5761cb999fe77b6dacd3759327fd98a3dd92e0c49274cbb523d8a3b4d9e7cbdc"
},
"downloads": -1,
"filename": "django-select2-forms-1.1.0.tar.gz",
"has_sig": false,
"md5_digest": "da1f2ac71a56d34a49a7fe47a050a7b3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2191221,
"upload_time": "2013-06-21T22:44:22",
"url": "https://files.pythonhosted.org/packages/0a/ac/f4cc663bf1b5cca54f676524b12851d8cdde5d28112702db18d827489f7a/django-select2-forms-1.1.0.tar.gz"
}
],
"1.1.11": [
{
"comment_text": "",
"digests": {
"md5": "e1d5ab948ff2ef863606306a16d85472",
"sha256": "cc340f78fe84e805fb6bd3e5d5369a1259af11a97c9e391e846a43bef2600540"
},
"downloads": -1,
"filename": "django-select2-forms-1.1.11.tar.gz",
"has_sig": false,
"md5_digest": "e1d5ab948ff2ef863606306a16d85472",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 194285,
"upload_time": "2014-02-03T17:31:28",
"url": "https://files.pythonhosted.org/packages/d8/f4/8f5fbead361822fd1670ecebcf8e67859b05a618987dff9e91b84392b72a/django-select2-forms-1.1.11.tar.gz"
}
],
"1.1.13": [
{
"comment_text": "",
"digests": {
"md5": "9d5927874de3bcdd0ac62107aed736e7",
"sha256": "2a77ff41df1849eed5d8f30bd4c1c6a9d3a5e03182b927ff52a839a6cbbe54aa"
},
"downloads": -1,
"filename": "django-select2-forms-1.1.13.tar.gz",
"has_sig": false,
"md5_digest": "9d5927874de3bcdd0ac62107aed736e7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 193856,
"upload_time": "2014-03-05T22:08:34",
"url": "https://files.pythonhosted.org/packages/43/08/e057c5c7062d4565fa1a57a2cd41dd0a5e003cdd767204bc4634d786ec52/django-select2-forms-1.1.13.tar.gz"
}
],
"1.1.14": [
{
"comment_text": "",
"digests": {
"md5": "13debdc64ce7d2eb1edf77fbef83baf2",
"sha256": "e1c60d74136d02fc2bd1d5a485bc1e4194a1d768e9f553cf9779f488a6e54dee"
},
"downloads": -1,
"filename": "django-select2-forms-1.1.14.tar.gz",
"has_sig": false,
"md5_digest": "13debdc64ce7d2eb1edf77fbef83baf2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 189252,
"upload_time": "2014-03-06T20:53:12",
"url": "https://files.pythonhosted.org/packages/bb/c3/32ca6120d163953103b1ee42e77e0fbc9a164a777ebc0b2b736aa0ce6b5a/django-select2-forms-1.1.14.tar.gz"
}
],
"1.1.15": [
{
"comment_text": "",
"digests": {
"md5": "ba3ebc83b8244ce72c1fbc22b96ed02b",
"sha256": "8c68757e13efd16bff4fe2398245431c3d47d93903660c2003e92a59599df7f8"
},
"downloads": -1,
"filename": "django-select2-forms-1.1.15.tar.gz",
"has_sig": false,
"md5_digest": "ba3ebc83b8244ce72c1fbc22b96ed02b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 189382,
"upload_time": "2014-06-06T16:35:45",
"url": "https://files.pythonhosted.org/packages/e2/50/f6eb97b483db5408a813e35d224ea048c17605d92cbbbb250f26a39dc1e7/django-select2-forms-1.1.15.tar.gz"
}
],
"1.1.16": [
{
"comment_text": "",
"digests": {
"md5": "0651549bc1b6ef8042320f6725ab80b9",
"sha256": "50fba26814359cbd4450f37a7a1b93ded1ac7566dec445bdc68d839bffbb85e3"
},
"downloads": -1,
"filename": "django-select2-forms-1.1.16.tar.gz",
"has_sig": false,
"md5_digest": "0651549bc1b6ef8042320f6725ab80b9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 189494,
"upload_time": "2014-06-10T16:29:03",
"url": "https://files.pythonhosted.org/packages/9b/82/b4960727f3a1ecb014669728c4f753bf9320993f87c388bb444a5960b03e/django-select2-forms-1.1.16.tar.gz"
}
],
"1.1.17": [
{
"comment_text": "",
"digests": {
"md5": "a4ae38ce0d9d96be066a8d057992a4b7",
"sha256": "eca88f6a27854186c94b3c6a0d2fde0f90a153bfbc5c1433cf68b06400c214eb"
},
"downloads": -1,
"filename": "django-select2-forms-1.1.17.tar.gz",
"has_sig": false,
"md5_digest": "a4ae38ce0d9d96be066a8d057992a4b7",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 189558,
"upload_time": "2014-06-11T15:04:34",
"url": "https://files.pythonhosted.org/packages/72/63/7a9b5a5f749e3bfa23e7f2007f3bbf17ea9dfe93beef5a8a1939f11e0e5f/django-select2-forms-1.1.17.tar.gz"
}
],
"1.1.18": [
{
"comment_text": "",
"digests": {
"md5": "fb104cf7b4b499f322f922802cbb2592",
"sha256": "93e70e943ed44f30611e69a7f7874345bab21136500759825664551c57d985a8"
},
"downloads": -1,
"filename": "django-select2-forms-1.1.18.tar.gz",
"has_sig": false,
"md5_digest": "fb104cf7b4b499f322f922802cbb2592",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 189596,
"upload_time": "2014-06-19T16:06:49",
"url": "https://files.pythonhosted.org/packages/17/ad/0b455033fd9b13613f761efc9cddf43baf35f942729b5c441a3515df8869/django-select2-forms-1.1.18.tar.gz"
}
],
"1.1.2": [
{
"comment_text": "",
"digests": {
"md5": "7920b88709fd88185620f51cc765f584",
"sha256": "900dd77a2e1513dc3344c82fb497857293687e41ef3bf8a68b1d7552b1abee17"
},
"downloads": -1,
"filename": "django-select2-forms-1.1.2.tar.gz",
"has_sig": false,
"md5_digest": "7920b88709fd88185620f51cc765f584",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 2193221,
"upload_time": "2013-07-15T16:48:06",
"url": "https://files.pythonhosted.org/packages/c3/bc/5ebcbd38b48e16181f9ad67545c0649f38e76b52ac32b51b9a688daa715f/django-select2-forms-1.1.2.tar.gz"
}
],
"1.1.25": [
{
"comment_text": "",
"digests": {
"md5": "454317cc4bd1015e1618808cd48aaf61",
"sha256": "ae4be5ef568234943c6478c36db2d78df1e5a3d0784fd59ad90dc6bd954f28d7"
},
"downloads": -1,
"filename": "django_select2_forms-1.1.25-py2-none-any.whl",
"has_sig": false,
"md5_digest": "454317cc4bd1015e1618808cd48aaf61",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 196253,
"upload_time": "2015-08-06T14:59:57",
"url": "https://files.pythonhosted.org/packages/db/9b/cb8a94d7f15db82c30f50f431db6544309f1daf10ed839b25c123e9a6598/django_select2_forms-1.1.25-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "83330d7f4a3e894363082015e5a533f4",
"sha256": "51a790a0fc809a86d8763707f022d10f85f1d8a259a1a7b697f099f7ccfe0c11"
},
"downloads": -1,
"filename": "django-select2-forms-1.1.25.tar.gz",
"has_sig": false,
"md5_digest": "83330d7f4a3e894363082015e5a533f4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 188815,
"upload_time": "2015-08-06T14:59:49",
"url": "https://files.pythonhosted.org/packages/dd/2b/41633d396508f87ed6f4c8ebf0451cc0651085af2690cbf31c7a6d65a130/django-select2-forms-1.1.25.tar.gz"
}
],
"1.1.28": [
{
"comment_text": "",
"digests": {
"md5": "9c153ac29961e9dfe1de99e723934a92",
"sha256": "d00df355163f2ea373cb9d35c37ef3c5891e59630578a504954e7fb2a2bfdb4f"
},
"downloads": -1,
"filename": "django_select2_forms-1.1.28-py2-none-any.whl",
"has_sig": false,
"md5_digest": "9c153ac29961e9dfe1de99e723934a92",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 195767,
"upload_time": "2016-07-24T20:52:35",
"url": "https://files.pythonhosted.org/packages/fa/35/6e378dd560af8143aef0eed5c85d491e723bc458e4981c5637f85f763020/django_select2_forms-1.1.28-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "8fff114616aeb729a25fb28ef01dbaa6",
"sha256": "2b149813730d39cfda16e8cc5d8c8148521198220fadf6d5a98db9f0540aa989"
},
"downloads": -1,
"filename": "django-select2-forms-1.1.28.tar.gz",
"has_sig": false,
"md5_digest": "8fff114616aeb729a25fb28ef01dbaa6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 188652,
"upload_time": "2016-07-24T20:52:24",
"url": "https://files.pythonhosted.org/packages/52/53/910ec7c86626562c3d902ff9a28a99e0c3cedb896afcf48d87371067684f/django-select2-forms-1.1.28.tar.gz"
}
],
"1.1.7": [
{
"comment_text": "",
"digests": {
"md5": "fbb77fb3fe6093d89c28ef3bb2869cd3",
"sha256": "0977b733b0102a2281442bc269a6a5236134c73f45f24edbb7f63a30d6ada68d"
},
"downloads": -1,
"filename": "django-select2-forms-1.1.7.tar.gz",
"has_sig": false,
"md5_digest": "fbb77fb3fe6093d89c28ef3bb2869cd3",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 188431,
"upload_time": "2013-08-06T15:24:30",
"url": "https://files.pythonhosted.org/packages/84/56/998abe1581991e46d4da80bc901e72bf90be301df9e00371eb8016ecf578/django-select2-forms-1.1.7.tar.gz"
}
],
"1.1.8": [
{
"comment_text": "",
"digests": {
"md5": "3379942671efbec552c120cb7b70502c",
"sha256": "528c4ccb296db025e3a57e040943c52022eab2a5e1fb49ed22d6fab1fd3795c2"
},
"downloads": -1,
"filename": "django-select2-forms-1.1.8.tar.gz",
"has_sig": false,
"md5_digest": "3379942671efbec552c120cb7b70502c",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 188277,
"upload_time": "2013-11-04T22:19:34",
"url": "https://files.pythonhosted.org/packages/90/1a/a4ca9fa2b996977d3d171b2d958d3bbc4c8c3825e99391550a63063d80c4/django-select2-forms-1.1.8.tar.gz"
}
],
"2.0.0": [
{
"comment_text": "",
"digests": {
"md5": "6b58e81109e50b2705731f82bb9bfc64",
"sha256": "3f2892dfdb93f86d01dc66dedd80e3344d73ff2ac4441145a14ff89747bdf5dc"
},
"downloads": -1,
"filename": "django_select2_forms-2.0.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "6b58e81109e50b2705731f82bb9bfc64",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 218115,
"upload_time": "2017-03-27T14:07:41",
"url": "https://files.pythonhosted.org/packages/9a/87/f4939cde371c0a8d5cf255597e24d09ffac6712fd1d226c65f85f9d8ca00/django_select2_forms-2.0.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "fcb43c6d9f59af7d3c6871d6a1a0f11f",
"sha256": "626727c7eb530e2e05bf93923bdb1e1477058053d5d664e23aca607630a4975f"
},
"downloads": -1,
"filename": "django-select2-forms-2.0.0.tar.gz",
"has_sig": false,
"md5_digest": "fcb43c6d9f59af7d3c6871d6a1a0f11f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 207990,
"upload_time": "2017-03-27T14:07:38",
"url": "https://files.pythonhosted.org/packages/9f/b2/dfd7f4194f9de7f367e632de400795201bca74c949de418c75af1b880a99/django-select2-forms-2.0.0.tar.gz"
}
],
"2.0.1": [
{
"comment_text": "",
"digests": {
"md5": "ad6ef98d3a0882caa1434e31a5cb8c91",
"sha256": "e4adf132164e02dc0ca3c5fc14f9e5edc5af19a82b635805a94b45978562557d"
},
"downloads": -1,
"filename": "django_select2_forms-2.0.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "ad6ef98d3a0882caa1434e31a5cb8c91",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 218107,
"upload_time": "2017-03-27T14:21:18",
"url": "https://files.pythonhosted.org/packages/28/fc/6c3b7204eea572a765a3a185eeb39635c196229a9c67cd37ea5abb255de2/django_select2_forms-2.0.1-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "e880ec107534be2f4f6cbc2b2d791032",
"sha256": "252fef3287463259876e383b341f73ea5072ad7a6ffa07c90b10669b100743d4"
},
"downloads": -1,
"filename": "django-select2-forms-2.0.1.tar.gz",
"has_sig": false,
"md5_digest": "e880ec107534be2f4f6cbc2b2d791032",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 208010,
"upload_time": "2017-03-27T14:21:16",
"url": "https://files.pythonhosted.org/packages/cc/e6/c6ad4bcdd9e1a72daa5d0ce83ea9d459ad2c2e0eae2ebf24416e0948d964/django-select2-forms-2.0.1.tar.gz"
}
],
"2.0.2": [
{
"comment_text": "",
"digests": {
"md5": "cd6a69efe63267802fe4f4ca7607b0aa",
"sha256": "a7d27652ce085b09d0a758bebc9428579d4f0ee8945ee84145edfdb8bdd6857b"
},
"downloads": -1,
"filename": "django_select2_forms-2.0.2-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "cd6a69efe63267802fe4f4ca7607b0aa",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 217106,
"upload_time": "2017-05-09T17:21:32",
"url": "https://files.pythonhosted.org/packages/e2/cd/09c8e81a44352408c12ab86e630408c5ac93fb048d7774174f887f643f59/django_select2_forms-2.0.2-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "6d774698c6691de3b2ff0eb473e2d2b1",
"sha256": "d1c62dad5163508de68145e0b6b6a51586119ecdb504936fff9580be7f480f3d"
},
"downloads": -1,
"filename": "django-select2-forms-2.0.2.tar.gz",
"has_sig": false,
"md5_digest": "6d774698c6691de3b2ff0eb473e2d2b1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 207163,
"upload_time": "2017-05-09T17:21:29",
"url": "https://files.pythonhosted.org/packages/a0/a4/37e83fa860b841161a4a0c9038da32e869e41b6b3ba770d79c11eef136cd/django-select2-forms-2.0.2.tar.gz"
}
],
"2.1.0": [
{
"comment_text": "",
"digests": {
"md5": "251ea5c21253593be230d51b29258210",
"sha256": "2e889e6419f3e7edfde202c851d9709285d0463646ad34a9f96329db48652460"
},
"downloads": -1,
"filename": "django_select2_forms-2.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "251ea5c21253593be230d51b29258210",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 214233,
"upload_time": "2019-06-13T04:30:17",
"url": "https://files.pythonhosted.org/packages/36/e3/b92dc9f845b60e23a4d10152353b4b5df89abd1539139a4b34ab67aaf484/django_select2_forms-2.1.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "f54a22bc35e12cc687bc5c533d755c8b",
"sha256": "d550aa726c01599504b73ac77375479c1bd46f74548402a5baff00b5d068279f"
},
"downloads": -1,
"filename": "django-select2-forms-2.1.0.tar.gz",
"has_sig": false,
"md5_digest": "f54a22bc35e12cc687bc5c533d755c8b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 206926,
"upload_time": "2019-06-13T04:30:15",
"url": "https://files.pythonhosted.org/packages/37/64/db38c18402f08230e1dd1e5c35d014730cd54c9f04889590472dd11e6780/django-select2-forms-2.1.0.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "251ea5c21253593be230d51b29258210",
"sha256": "2e889e6419f3e7edfde202c851d9709285d0463646ad34a9f96329db48652460"
},
"downloads": -1,
"filename": "django_select2_forms-2.1.0-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "251ea5c21253593be230d51b29258210",
"packagetype": "bdist_wheel",
"python_version": "2.7",
"requires_python": null,
"size": 214233,
"upload_time": "2019-06-13T04:30:17",
"url": "https://files.pythonhosted.org/packages/36/e3/b92dc9f845b60e23a4d10152353b4b5df89abd1539139a4b34ab67aaf484/django_select2_forms-2.1.0-py2.py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "f54a22bc35e12cc687bc5c533d755c8b",
"sha256": "d550aa726c01599504b73ac77375479c1bd46f74548402a5baff00b5d068279f"
},
"downloads": -1,
"filename": "django-select2-forms-2.1.0.tar.gz",
"has_sig": false,
"md5_digest": "f54a22bc35e12cc687bc5c533d755c8b",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 206926,
"upload_time": "2019-06-13T04:30:15",
"url": "https://files.pythonhosted.org/packages/37/64/db38c18402f08230e1dd1e5c35d014730cd54c9f04889590472dd11e6780/django-select2-forms-2.1.0.tar.gz"
}
]
}