{ "info": { "author": "Jason Webb", "author_email": "bigjasonwebb@gmail.com,sergeimaertens@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Framework :: Django", "Framework :: Django :: 1.11", "Framework :: Django :: 2.0", "Framework :: Django :: 2.1", "Framework :: Django :: 2.2", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: Implementation :: PyPy" ], "description": "============================\nDjango-Choices\n============================\n\n|travis| |coverage| |docs| |pypi| |python-versions| |django-versions|\n\nOrder and sanity for django model choices.\n------------------------------------------------------\n\nDjango choices provides a declarative way of using the choices_ option on django_\nfields. Read the full `documentation`_ on ReadTheDocs.\n\n------------\nInstallation\n------------\nYou can install via PyPi_ or direct from the github_ repo.\n\nTo install with pip:\n\n.. code-block:: bash\n\n $ pip install django-choices\n\nTo install with easy_install:\n\n.. code-block:: bash\n\n $ easy_install django-choices\n\n-----------\nBasic Usage\n-----------\nTo start you create a choices class. Then you point the choices property on your\nfields to the ``choices`` attribute of the new class. Django will be able to use\nthe choices and you will be able to access the values by name. For example you\ncan replace this:\n\n.. code-block:: python\n\n # In models.py\n class Person(models.Model):\n \t# Choices\n \tPERSON_TYPE = (\n (\"C\", \"Customer\"),\n (\"E\", \"Employee\"),\n (\"G\", \"Groundhog\"),\n )\n # Fields\n name = models.CharField(max_length=32)\n type = models.CharField(max_length=1, choices=PERSON_TYPE)\n\nWith this:\n\n.. code-block:: python\n\n # In models.py\n from djchoices import DjangoChoices, ChoiceItem\n\n class Person(models.Model):\n \t# Choices\n class PersonType(DjangoChoices):\n customer = ChoiceItem(\"C\")\n employee = ChoiceItem(\"E\")\n groundhog = ChoiceItem(\"G\")\n\n # Fields\n name = models.CharField(max_length=32)\n type = models.CharField(max_length=1, choices=PersonType.choices)\n\nYou can use this elsewhere like this:\n\n.. code-block:: python\n\n # Other code\n Person.create(name=\"Phil\", type=Person.PersonType.groundhog)\n\nYou can use them without value, and the label will be used as value:\n\n.. code-block:: python\n\n class Sample(DjangoChoices):\n option_a = ChoiceItem()\n option_b = ChoiceItem()\n\n print(Sample.option_a) # \"option_a\"\n\n-------\nLicense\n-------\nLicensed under the `MIT License`_.\n\n----------\nSource Code\n----------\nThe source code can be found on github_.\n\n.. |travis| image:: https://secure.travis-ci.org/bigjason/django-choices.svg?branch=master\n :target: http://travis-ci.org/bigjason/django-choices\n\n.. |coverage| image:: https://coveralls.io/repos/bigjason/django-choices/badge.svg?branch=master&service=github\n :target: https://coveralls.io/github/bigjason/django-choices?branch=master\n\n.. |docs| image:: https://readthedocs.org/projects/django-choices/badge/?version=latest\n :target: http://django-choices.readthedocs.io/en/latest/\n :alt: Documentation Status\n\n.. |pypi| image:: https://img.shields.io/pypi/v/django-choices.svg\n :target: https://pypi.python.org/pypi/django-choices\n\n.. |python-versions| image:: https://img.shields.io/pypi/pyversions/django-choices.svg\n\n.. |django-versions| image:: https://img.shields.io/pypi/djversions/django-choices.svg\n\n.. _choices: http://docs.djangoproject.com/en/stable/ref/models/fields/#choices\n.. _MIT License: http://en.wikipedia.org/wiki/MIT_License\n.. _django: http://www.djangoproject.com/\n.. _github: https://github.com/bigjason/django-choices\n.. _PyPi: http://pypi.python.org/pypi/django-choices/\n.. _documentation: http://django-choices.readthedocs.io/en/latest/\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/bigjason/django-choices", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "django-choices", "package_url": "https://pypi.org/project/django-choices/", "platform": "", "project_url": "https://pypi.org/project/django-choices/", "project_urls": { "Homepage": "https://github.com/bigjason/django-choices" }, "release_url": "https://pypi.org/project/django-choices/1.7.0/", "requires_dist": [ "Django (>=1.11)" ], "requires_python": "", "summary": "Sanity for the django choices functionality.", "version": "1.7.0" }, "last_serial": 5217964, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "95c39dbb46a56ad103f16e2d71bf0d4f", "sha256": "2cead4a12c20f30c38186752f5676c70751a0a33fe3f61df6c4ce51ab80045b0" }, "downloads": -1, "filename": "django-choices-1.0.0.tar.gz", "has_sig": false, "md5_digest": "95c39dbb46a56ad103f16e2d71bf0d4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1804, "upload_time": "2011-02-24T05:27:58", "url": "https://files.pythonhosted.org/packages/92/dc/7e4080bed509c3504f2c1afd3d29bb356f90fb004f93ed7739f5290f5a9d/django-choices-1.0.0.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "3733b82a61eec201c13624670dd2ff53", "sha256": "0a41ad51e35d1bb1c1a968b0e3213067c74f0a4c6158b7f2de6893c3e7a436cf" }, "downloads": -1, "filename": "django-choices-1.0.5.tar.gz", "has_sig": false, "md5_digest": "3733b82a61eec201c13624670dd2ff53", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2210, "upload_time": "2011-02-24T16:21:40", "url": "https://files.pythonhosted.org/packages/8e/38/c5c22c01f77272376d7087afcab7bb6a2870104815d9cdbc1832ff196440/django-choices-1.0.5.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "412ad559b06ceeb3457f3c77629c338d", "sha256": "7ff424a67fb69cfa109dab2977e7ef8ef4e6952b3436ae79c52cac464cb0f257" }, "downloads": -1, "filename": "django-choices-1.1.0.tar.gz", "has_sig": false, "md5_digest": "412ad559b06ceeb3457f3c77629c338d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3077, "upload_time": "2011-02-27T23:37:04", "url": "https://files.pythonhosted.org/packages/b4/2c/df92a187563b3bb29f92771985e7faac247513bc8c1fc361d36ab9730432/django-choices-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "3ed725ba17c835c80c3d316da3cab0a5", "sha256": "d41adaa35a31e9746c53cdf073125e9fc9205507032d39ac85c7cc2f2a16775f" }, "downloads": -1, "filename": "django-choices-1.1.1.tar.gz", "has_sig": false, "md5_digest": "3ed725ba17c835c80c3d316da3cab0a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3070, "upload_time": "2011-02-28T14:39:44", "url": "https://files.pythonhosted.org/packages/30/14/6914791395c3279b5a55d5093869bf8ea3df12158dc41c118e41441ed78f/django-choices-1.1.1.tar.gz" } ], "1.1.11": [ { "comment_text": "", "digests": { "md5": "47a7d3d1a0b09ef57af0336f84219724", "sha256": "8af08b51bc6ce1e613df05c1eb6c69bce64bac1e9daf6a0a95330b13d6ea2f71" }, "downloads": -1, "filename": "django-choices-1.1.11.tar.gz", "has_sig": false, "md5_digest": "47a7d3d1a0b09ef57af0336f84219724", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4039, "upload_time": "2013-02-21T22:20:39", "url": "https://files.pythonhosted.org/packages/1c/0e/586f9bfd5550d7e0fbdb3ccff4f8ec81a84ff51bdd71026eb65679fb8067/django-choices-1.1.11.tar.gz" } ], "1.1.12": [ { "comment_text": "", "digests": { "md5": "2762ea4e15c761615e749d903d1ccf03", "sha256": "df5525e850e92a09eb92413c87c359df36a29a350b527603e3d1a4c228bc4308" }, "downloads": -1, "filename": "django-choices-1.1.12.tar.gz", "has_sig": false, "md5_digest": "2762ea4e15c761615e749d903d1ccf03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4134, "upload_time": "2013-06-28T17:42:00", "url": "https://files.pythonhosted.org/packages/9a/2f/1171d5cc9eca42fea23ffe2b00a35c535b394785fda7de06c0af242202d3/django-choices-1.1.12.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "a304181020bdb655ddda2cd702adb7a9", "sha256": "3796da88033e02165b0f6ab8c343980ce77ec3d0031f0342c035d55c709e7959" }, "downloads": -1, "filename": "django-choices-1.1.2.tar.gz", "has_sig": false, "md5_digest": "a304181020bdb655ddda2cd702adb7a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3255, "upload_time": "2011-02-28T18:12:10", "url": "https://files.pythonhosted.org/packages/3e/45/61a6d3d5defa28d2277d4bdd5c17cc0c4ad8c7226dceda3efe463cf33698/django-choices-1.1.2.tar.gz" } ], "1.1.6": [ { "comment_text": "", "digests": { "md5": "009a3e4261ee260e86650339bd6e7e8b", "sha256": "1e7b9c6fa378bcd004106bd8e95a28aff4a8ac08760f8ecc4dbccfa970f550e0" }, "downloads": -1, "filename": "django-choices-1.1.6.tar.gz", "has_sig": false, "md5_digest": "009a3e4261ee260e86650339bd6e7e8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3681, "upload_time": "2011-03-07T22:07:55", "url": "https://files.pythonhosted.org/packages/f8/89/f88b84ec2464a3d65b451274e2aacd2b9eeb6dda2b330a9158f155abaf1e/django-choices-1.1.6.tar.gz" } ], "1.1.7": [ { "comment_text": "", "digests": { "md5": "ca33a3133ed5fa7ca2dd00afd7da71fa", "sha256": "56c178c4b28a1eb4e9921802a519506d2f61e5a2a39f903113b1f8672c7e6a8b" }, "downloads": -1, "filename": "django-choices-1.1.7.tar.gz", "has_sig": false, "md5_digest": "ca33a3133ed5fa7ca2dd00afd7da71fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3886, "upload_time": "2011-03-21T04:16:47", "url": "https://files.pythonhosted.org/packages/13/89/6d5fb35cf7749d327c3c4f2726bf989374a1accb9a5ddb4b4269990dca8c/django-choices-1.1.7.tar.gz" } ], "1.1.8": [ { "comment_text": "", "digests": { "md5": "49a98c9562fdb954aa5a0e930a710a27", "sha256": "a16bdad1d86651100977119349cb7bc758f8c58a1200cd651a97cdefb33c39f8" }, "downloads": -1, "filename": "django-choices-1.1.8.tar.gz", "has_sig": false, "md5_digest": "49a98c9562fdb954aa5a0e930a710a27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3880, "upload_time": "2012-01-13T18:16:18", "url": "https://files.pythonhosted.org/packages/a7/af/4bdd150e8f7c8d42777353e8f39550cf2f82b42a012df7aef266c8173adb/django-choices-1.1.8.tar.gz" } ], "1.1.9": [ { "comment_text": "", "digests": { "md5": "df14713db1e8289f6e72794fdd39ca13", "sha256": "5ad1af211809cd05effe9f211c726135500e00d4c91ace0dac00209a1b88bb78" }, "downloads": -1, "filename": "django-choices-1.1.9.tar.gz", "has_sig": false, "md5_digest": "df14713db1e8289f6e72794fdd39ca13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3901, "upload_time": "2012-04-23T23:40:46", "url": "https://files.pythonhosted.org/packages/93/ef/dda553eab80739c46fbf68107d9841e85cc739e42520e7b2a888275cb08e/django-choices-1.1.9.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "947c3d6e0f4e16ecf07f7735b9af697c", "sha256": "46645591c704e0cc83bf929bb56eb895be19b8fa98075c33d0466e69a1bffc4a" }, "downloads": -1, "filename": "django-choices-1.2.tar.gz", "has_sig": false, "md5_digest": "947c3d6e0f4e16ecf07f7735b9af697c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4373, "upload_time": "2014-07-02T05:44:13", "url": "https://files.pythonhosted.org/packages/2e/da/c4c8c97401b7f5ccf35674d9f17be374a2c9d9e7111c6bad898bcc77478c/django-choices-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "0e46361ac467d7f94bae71dc8cd2c08a", "sha256": "4cf34105a2ef441ac6f2073853feef08ee24a65f41236d4e97c1919dd10152d4" }, "downloads": -1, "filename": "django-choices-1.3.tar.gz", "has_sig": false, "md5_digest": "0e46361ac467d7f94bae71dc8cd2c08a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4550, "upload_time": "2014-08-09T04:08:44", "url": "https://files.pythonhosted.org/packages/36/e6/0d0a54bb44fc3322116cd1afc93dd5a0d08c2d888b5417a006f917ed5475/django-choices-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "c3b069de5b4a610d15cea67dbc82f5fd", "sha256": "f2cf8960d52dedea7a0836cf6582cabe0b158cb69903d124318775ebbbace866" }, "downloads": -1, "filename": "django-choices-1.4.tar.gz", "has_sig": false, "md5_digest": "c3b069de5b4a610d15cea67dbc82f5fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4754, "upload_time": "2015-08-29T11:22:16", "url": "https://files.pythonhosted.org/packages/79/c4/f97f290b9e3d43e0e12bb7884dbc79cdbc017e831e7c6b44c18979aa121a/django-choices-1.4.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "f104b290cb639615b050c2a6776859df", "sha256": "8eee8af3a096ecd252b53e5099b08fba6d733e47d16e0fa6f7ae88afae5febd0" }, "downloads": -1, "filename": "django-choices-1.4.2.tar.gz", "has_sig": false, "md5_digest": "f104b290cb639615b050c2a6776859df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5201, "upload_time": "2015-09-10T19:26:47", "url": "https://files.pythonhosted.org/packages/cb/89/abfa470ccd6ec0d725e4b61fe72f7a4e4d26a15dd1079bb524a7d825a707/django-choices-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "a0d2dc00c6288d8f9278e4e1ecf922f2", "sha256": "12248922b5e1d09b572697c7695fe284760fdf27e678b44349ebc593627ebbf6" }, "downloads": -1, "filename": "django-choices-1.4.3.tar.gz", "has_sig": false, "md5_digest": "a0d2dc00c6288d8f9278e4e1ecf922f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5387, "upload_time": "2016-06-01T07:46:34", "url": "https://files.pythonhosted.org/packages/52/a7/742f4fdac837f97ccd2ad1ad233686b6947f8375e9686368768237c08ec3/django-choices-1.4.3.tar.gz" } ], "1.4.4": [ { "comment_text": "built for Linux-4.6.3-1-ARCH-x86_64-with-glibc2.2.5", "digests": { "md5": "cfddaf63cca0b70a187fd126b81fa168", "sha256": "a60a0f10d6a6dff475d69f6dea918f13a889187707491218e6c3920c10b3ade9" }, "downloads": -1, "filename": "django-choices-1.4.4.linux-x86_64.tar.gz", "has_sig": false, "md5_digest": "cfddaf63cca0b70a187fd126b81fa168", "packagetype": "bdist_dumb", "python_version": "any", "requires_python": null, "size": 9772, "upload_time": "2016-08-28T20:10:38", "url": "https://files.pythonhosted.org/packages/45/57/7ba6497e2fbe5c56224a87ca08344d646f4f0ea5442321b472edfdcb21c2/django-choices-1.4.4.linux-x86_64.tar.gz" }, { "comment_text": "", "digests": { "md5": "13fafcffd10917de6b5ac479229e2640", "sha256": "1cbb69bf76bc80f3c255b6d237eda397b2f45351e8b8e173a386dfb1dd635ebe" }, "downloads": -1, "filename": "django-choices-1.4.4.tar.gz", "has_sig": false, "md5_digest": "13fafcffd10917de6b5ac479229e2640", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5607, "upload_time": "2016-08-28T20:10:36", "url": "https://files.pythonhosted.org/packages/20/d9/0488b5ad7b4a1b9b50565555a1c1c6f127412919035a700db2c15b3c4e56/django-choices-1.4.4.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "9293a9e5765c5110a0e395df5d38d40c", "sha256": "fcefb1ba8c53c0d0a0452e1c637656a7e92c5c6ccbddcb969ed9a82e50b12184" }, "downloads": -1, "filename": "django_choices-1.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9293a9e5765c5110a0e395df5d38d40c", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 8096, "upload_time": "2017-02-13T22:17:15", "url": "https://files.pythonhosted.org/packages/39/24/3b37d34df8934063fe58e9e7d9394ca5fa8a1fc21446345ae1ad64a80fa0/django_choices-1.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "95e965b21f8c2efa11c4e4dcde3957d2", "sha256": "b541f28424c8a4ebccb0134e8586207a7ec9e8d8f2c004a2a90eb1a4e034b54c" }, "downloads": -1, "filename": "django-choices-1.5.0.tar.gz", "has_sig": false, "md5_digest": "95e965b21f8c2efa11c4e4dcde3957d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5274, "upload_time": "2017-02-13T22:17:13", "url": "https://files.pythonhosted.org/packages/7c/1d/c2afd7cebabee727e547a9f7c512d87498042508b24e29751a85ef33fca3/django-choices-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "ede27164f17debafde511264a4e1ff96", "sha256": "41f8e94811f73d0b75b7de6cf0fcd587fd9df3865ebed69b135e86f4b2b41104" }, "downloads": -1, "filename": "django_choices-1.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ede27164f17debafde511264a4e1ff96", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 8385, "upload_time": "2017-06-21T21:39:52", "url": "https://files.pythonhosted.org/packages/af/f5/7cff69fee40957aa11cc38868e5d26ba23fdeb269a6bb17c921d188cccfb/django_choices-1.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ee02e25ae1301e542a64accdfaf507a4", "sha256": "4fb877b099a17d423e82f729ecbff3b0c45179c4b688f0d63d2343ac5e32cdad" }, "downloads": -1, "filename": "django-choices-1.5.1.tar.gz", "has_sig": false, "md5_digest": "ee02e25ae1301e542a64accdfaf507a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5781, "upload_time": "2017-06-21T21:39:31", "url": "https://files.pythonhosted.org/packages/7b/48/ae84289e35fd9007c434902bc7531cf356fe758e6ebb43f481fb665bb34d/django-choices-1.5.1.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "4fa65d51f76a8206a1f9519ce16bb295", "sha256": "aa4a0120fbc0028cec1bed9babee8f23acd5152ef442afb7f5f4e34f4d0ce560" }, "downloads": -1, "filename": "django_choices-1.6.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4fa65d51f76a8206a1f9519ce16bb295", "packagetype": "bdist_wheel", "python_version": "3.6", "requires_python": null, "size": 8923, "upload_time": "2017-07-12T07:46:58", "url": "https://files.pythonhosted.org/packages/00/aa/2aacdfab1128aad1b7e26cd68a9ab5fd78ab748eb507ab1e6fc795fda18b/django_choices-1.6.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "02840fd5989b9841995be2e35a4cf6f2", "sha256": "178c7394100e1fccd6482fd7da3d23b8b140910faca0b3960817735dd714cc25" }, "downloads": -1, "filename": "django-choices-1.6.0.tar.gz", "has_sig": false, "md5_digest": "02840fd5989b9841995be2e35a4cf6f2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6298, "upload_time": "2017-07-12T07:46:56", "url": "https://files.pythonhosted.org/packages/7e/3a/7767c126d129c24e61786f13b9b7f1face8c728e7fe0bbc51df4e3677359/django-choices-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "7eeb004b2ae49090be19423c05fe2d51", "sha256": "14e086ad7b17fa700afdef520bc11be85793a9da586e41691eee4e4c0a9c890f" }, "downloads": -1, "filename": "django_choices-1.6.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7eeb004b2ae49090be19423c05fe2d51", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9080, "upload_time": "2018-08-03T15:56:47", "url": "https://files.pythonhosted.org/packages/ca/a1/0e1eaf3242f2d06cf8129b75bacc7b3bfa1633a8b3412fe0bf9faeda7143/django_choices-1.6.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "69383e367eff7bfbb4af583b55b4c292", "sha256": "9505b54150fd523fd63e009fa32c626b63c007f65feb7ae4b10578b6acade9fa" }, "downloads": -1, "filename": "django-choices-1.6.1.tar.gz", "has_sig": false, "md5_digest": "69383e367eff7bfbb4af583b55b4c292", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6399, "upload_time": "2018-08-03T15:56:48", "url": "https://files.pythonhosted.org/packages/cd/34/0e83f9cf7e3b0ac364c0e1979b2c84f8d0c7e3011f0713595b9e167f215a/django-choices-1.6.1.tar.gz" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "936407adec7564185f8840fb03c6efac", "sha256": "79a026d86758451394d1eda758f384f0724aacc8c4b29d9d28a6cccc554f51d4" }, "downloads": -1, "filename": "django_choices-1.6.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "936407adec7564185f8840fb03c6efac", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9254, "upload_time": "2019-01-24T10:20:07", "url": "https://files.pythonhosted.org/packages/ff/71/f0fd279a5aef8bbe441ae856d12fd991414b8ec8025b9edd620265cd17be/django_choices-1.6.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "805c881dad4227157de601d5378a036a", "sha256": "2fef111e41f8058f4433905b126227720a912f0746aa783ca67b794fd3d68c73" }, "downloads": -1, "filename": "django-choices-1.6.2.tar.gz", "has_sig": false, "md5_digest": "805c881dad4227157de601d5378a036a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6559, "upload_time": "2019-01-24T10:20:09", "url": "https://files.pythonhosted.org/packages/15/ab/f798977ab3e86a4807b3fa167fc709996f3cfb922d8b9b3b043aee5d3d12/django-choices-1.6.2.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "a06498bc3ed833d4c46a83cca6945fae", "sha256": "6392edc3ca93569aee4372068279599ebbcde1599b5358f644e6c41bc8e099b5" }, "downloads": -1, "filename": "django_choices-1.7.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "a06498bc3ed833d4c46a83cca6945fae", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9676, "upload_time": "2019-05-02T15:18:45", "url": "https://files.pythonhosted.org/packages/d8/6b/82db1ce16ef07b8aafe6c3e59deaed8d3a2a0a95c1c75f479d85ba6d54f6/django_choices-1.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f163c6f638fcd0cc17a89b274240de9", "sha256": "3c0f36b96cf7f7b5fd7c06160c72eb97ad1a27365d4425ef5042049a185cffdf" }, "downloads": -1, "filename": "django-choices-1.7.0.tar.gz", "has_sig": true, "md5_digest": "4f163c6f638fcd0cc17a89b274240de9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6898, "upload_time": "2019-05-02T15:18:47", "url": "https://files.pythonhosted.org/packages/65/a2/fb75eca629b73cf7783a85a4d74d86864b4f69692c68fde9015c55e71dbd/django-choices-1.7.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a06498bc3ed833d4c46a83cca6945fae", "sha256": "6392edc3ca93569aee4372068279599ebbcde1599b5358f644e6c41bc8e099b5" }, "downloads": -1, "filename": "django_choices-1.7.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "a06498bc3ed833d4c46a83cca6945fae", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 9676, "upload_time": "2019-05-02T15:18:45", "url": "https://files.pythonhosted.org/packages/d8/6b/82db1ce16ef07b8aafe6c3e59deaed8d3a2a0a95c1c75f479d85ba6d54f6/django_choices-1.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4f163c6f638fcd0cc17a89b274240de9", "sha256": "3c0f36b96cf7f7b5fd7c06160c72eb97ad1a27365d4425ef5042049a185cffdf" }, "downloads": -1, "filename": "django-choices-1.7.0.tar.gz", "has_sig": true, "md5_digest": "4f163c6f638fcd0cc17a89b274240de9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6898, "upload_time": "2019-05-02T15:18:47", "url": "https://files.pythonhosted.org/packages/65/a2/fb75eca629b73cf7783a85a4d74d86864b4f69692c68fde9015c55e71dbd/django-choices-1.7.0.tar.gz" } ] }