{ "info": { "author": "Praekelt Consulting", "author_email": "dev@praekelt.com", "bugtrack_url": null, "classifiers": [ "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP :: Dynamic Content" ], "description": "Django Simple Autocomplete\n==========================\n**App enabling the use of jQuery UI autocomplete widget for ModelChoiceFields with minimal configuration required.**\n\n.. contents:: Contents\n :depth: 5\n\nInstallation\n------------\n\n#. Install or add ``django-simple-autocomplete`` to your Python path.\n\n#. Add ``simple_autocomplete`` to your ``INSTALLED_APPS`` setting.\n\n#. Add (r'^simple-autocomplete/', include('simple_autocomplete.urls', namespace='simple_autocomplete')) to urlpatterns.\n\n#. Add ```` and\n ```` to your template.\n You may need to override eg. ``templates/admin/base.html``. If you already have jQuery UI installed for\n your site you may skip this step.\n\nUsage\n-----\n\nDjango by default renders a select widget (a.k.a. combobox or dropdown) for\nforeign key fields. You can change the widget to an autocomplete widget by\nadding the model to the SIMPLE_AUTOCOMPLETE_MODELS dictionary in your\nsettings file. For instance, to use the autocomplete widget when selecting a\nuser do::\n\n SIMPLE_AUTOCOMPLETE = {'auth.user': {'search_field': 'username'}}\n\nThe dictionary format allows arbitrary parameters to be introduced in future.\nParameter ``threshold`` indicates the minimum number of options required before\nthe widget is rendered as an autocomplete widget. If the threshold is not met\nthe default widget is rendered::\n\n SIMPLE_AUTOCOMPLETE = {'auth.user': {'threshold': 10}}\n\nParameter ``max_items`` indicates the maximum number of matches to display in the autocomplete dropdown. It defaults to 10.::\n\n SIMPLE_AUTOCOMPLETE = {'auth.user': {'max_items': 10}}\n\nParameter ``duplicate_format_function`` is a lambda function that enables a custom string should more than one item in the autocomplete dropdown have the same string value.\nIt defaults to displaying the content type name. Set it using a lambda function, eg.::\n\n SIMPLE_AUTOCOMPLETE = {'auth.user': {'duplicate_format_function': lambda obj, model, content_type: 'id: %s' % obj.id}}\n\nThe product attempts to use a field ``title`` for filtering the list. If the\nmodel has no field ``title`` then the first CharField is used. Eg. for the user\nmodel the field ``username`` is used.\n\nThe widget can be used implicitly in a form. The declaration of\n``ModelChoiceField`` is all that is required::\n\n class MyForm(forms.Form):\n user = forms.ModelChoiceField(queryset=User.objects.all(), initial=3)\n\nThe widget can be used explicitly in a form. In such a case you must provide an\nURL which returns results as JSON with format [(value, label), (value, label),...].\nThe ``initial`` and ``initial_display`` parameters are only required if there is\na starting value::\n\n from simple_autocomplete.widgets import AutoCompleteWidget\n\n class MyForm(forms.Form):\n user = forms.ModelChoiceField(\n queryset=User.objects.all(),\n initial=3,\n widget=AutoCompleteWidget(\n url='/custom-json-query',\n initial_display='John Smith'\n )\n )\n\nThe ability to specify an URL for the widget enables you to hook up to other\nmore advanced autocomplete query engines if you wish.\n\nAuthors\n=======\n\nPraekelt Consulting\n-------------------\n* Hedley Roos\n\nChangelog\n=========\n\n1.11\n----\n#. Django 1.11 compatibility. Correct use of django.jQuery.\n\n1.9.1\n-----\n#. Ensure the static files are also deployed.\n\n1.9\n---\n#. Django 1.9 compatibility. Support for previous versions has been dropped.\n\n0.5.2\n-----\n#. If a search field is supplied then the dropdown now shows those attributes, not the objects string representation.\n\n0.5.1\n-----\n#. Only apply autocomplete in cases where a default widget isn't supplied. This enables the product to work harmoniously with eg. Grappelli's autocomplete.\n\n0.5\n---\n#. Preserve sort order of multiple choice values.\n\n0.4\n---\n#. Deprecate `SIMPLE_AUTOCOMPLETE_MODELS` setting.\n#. Django 1.6.2 compatibility.\n\n0.3.3\n-----\n#. Tests failing for Django 1.5. Pin to 1.4.x until that is fixed.\n#. Handle case where an item that is referenced by a multiselect has been deleted from the database.\n\n0.3.2\n-----\n#. Allow `search_field` to be specified per model, in case the defaults don't suffice.\n\n0.3.1\n-----\n#. Fix unicode bug.\n\n0.3\n---\n#. `max_items` setting specifies maximum number of items to display in autocomplete dropdown.\n#. `duplicate_format_function` setting allows appending of a custom string if more than one item in the autocomplete dropdown has the same string value.\n\n0.2\n---\n#. Clear autoselect helper in some cases for cleaner UI.\n#. Use object string representation for display and not lookup fieldname.\n\n0.1\n---\n#. Add autocomplete widget for multiple selections\n#. Threshold setting to determine when to show autocomplete widget instead of normal widget\n\n0.0.1\n-----\n#. Initial release.\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/praekelt/django-simple-autocomplete", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "django-simple-autocomplete", "package_url": "https://pypi.org/project/django-simple-autocomplete/", "platform": "", "project_url": "https://pypi.org/project/django-simple-autocomplete/", "project_urls": { "Homepage": "http://github.com/praekelt/django-simple-autocomplete" }, "release_url": "https://pypi.org/project/django-simple-autocomplete/1.11/", "requires_dist": null, "requires_python": "", "summary": "App enabling the use of jQuery UI autocomplete widget for ModelChoiceFields with minimal configuration required.", "version": "1.11" }, "last_serial": 3181844, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "412d9251a506a721f7d5d1e39453ea10", "sha256": "a69bfdc2ba2e482f3279fb4778085473a2c33b0585762e63b8af8313a5744ab6" }, "downloads": -1, "filename": "django_simple_autocomplete-0.0.1-py2.6.egg", "has_sig": false, "md5_digest": "412d9251a506a721f7d5d1e39453ea10", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 13887, "upload_time": "2011-09-18T20:43:36", "url": "https://files.pythonhosted.org/packages/93/3c/4db577f1b149072a72916261c43118109c7015c9927c86836383ef6af478/django_simple_autocomplete-0.0.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "163ee480e4cea4d956e100d05eb71438", "sha256": "00a027048f8bd0f5cefff8f2c0602e2da6f951432f5a7f32c93404342518fd40" }, "downloads": -1, "filename": "django-simple-autocomplete-0.0.1.tar.gz", "has_sig": false, "md5_digest": "163ee480e4cea4d956e100d05eb71438", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6285, "upload_time": "2011-09-18T20:43:34", "url": "https://files.pythonhosted.org/packages/10/6c/8f265a92d661150a484b27d39f934c343b86af2288775eddda4e9e767b7d/django-simple-autocomplete-0.0.1.tar.gz" } ], "0.1": [ { "comment_text": "", "digests": { "md5": "68437bf0cf60dcb33ba9ab8ee9635ef1", "sha256": "52647cfa8078f7d35e4d9743869c9f5ca221b5dce0df3c8e80c4bedbd62c49fb" }, "downloads": -1, "filename": "django_simple_autocomplete-0.1-py2.6.egg", "has_sig": false, "md5_digest": "68437bf0cf60dcb33ba9ab8ee9635ef1", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 16159, "upload_time": "2011-10-11T11:21:15", "url": "https://files.pythonhosted.org/packages/1f/b7/9b568d988692900ee3cee144a1dfee6f1fa9cbea71691ea88ea99b4b3ac9/django_simple_autocomplete-0.1-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "27a92bd914ccc22a307331939eb8db37", "sha256": "294a5ad8a7f403ded35bbd37885f32ff8e8f8521f4993315cdca1e86faf3ad4d" }, "downloads": -1, "filename": "django-simple-autocomplete-0.1.tar.gz", "has_sig": false, "md5_digest": "27a92bd914ccc22a307331939eb8db37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7388, "upload_time": "2011-10-11T11:21:12", "url": "https://files.pythonhosted.org/packages/8a/cb/3805ad84ec47a2bd7c9f77ba190f4c1bf858917f87af3daecfb468acb27c/django-simple-autocomplete-0.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "62fea1a7556746cf57f73724903624bf", "sha256": "5b2399eb42fa6f558b508d8304dbe6c9d7120fc0a79b68e1a44e7d6b2146ca45" }, "downloads": -1, "filename": "django_simple_autocomplete-0.2-py2.6.egg", "has_sig": false, "md5_digest": "62fea1a7556746cf57f73724903624bf", "packagetype": "bdist_egg", "python_version": "2.6", "requires_python": null, "size": 16383, "upload_time": "2012-04-02T16:26:59", "url": "https://files.pythonhosted.org/packages/51/2b/f8bbd0d234af55bd3d124a1ce2644fcd10fbd0565b910fc8005bcc3af6e3/django_simple_autocomplete-0.2-py2.6.egg" }, { "comment_text": "", "digests": { "md5": "3c4ac7d4895405a843cca8a5f22065f5", "sha256": "0c81a5fcdfbd16b1f3ad2cae27c396c51dcadcd64539adc1ebba16dafbc73229" }, "downloads": -1, "filename": "django_simple_autocomplete-0.2-py2.7.egg", "has_sig": false, "md5_digest": "3c4ac7d4895405a843cca8a5f22065f5", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 16345, "upload_time": "2012-04-02T16:26:36", "url": "https://files.pythonhosted.org/packages/af/e7/dd170d022dbe3ef6ca452e7418396377256ba02089bbe1e71273b4a66e49/django_simple_autocomplete-0.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "0ea90b6a87e93ee226fa6f1ec0d38a5a", "sha256": "1874a02f43ebc43eda67cd6b6983213cf274994d36a47cf0bb6c21b6b1fbe86e" }, "downloads": -1, "filename": "django-simple-autocomplete-0.2.tar.gz", "has_sig": false, "md5_digest": "0ea90b6a87e93ee226fa6f1ec0d38a5a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7533, "upload_time": "2012-04-02T16:27:01", "url": "https://files.pythonhosted.org/packages/e9/6b/e7bc35714299f2dc0c82ef02752c22793aa54cad50e22a9e091c9327e705/django-simple-autocomplete-0.2.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "4845fa8693fa81503caac17641d1f205", "sha256": "88bf9efe57c92a3e3f2551daf21845554d22e76dfb2d5e414dd5ced7395aca66" }, "downloads": -1, "filename": "django_simple_autocomplete-0.3-py2.7.egg", "has_sig": false, "md5_digest": "4845fa8693fa81503caac17641d1f205", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 17376, "upload_time": "2012-09-06T12:57:33", "url": "https://files.pythonhosted.org/packages/95/b0/1794943ba4e7c2c817b0fb20edac45d816c9149fc60f5fe74349ecb70df1/django_simple_autocomplete-0.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a3d0e79f7df79490e8e7976636832fb1", "sha256": "e51b88e2c41f0dad1dd73d381d1cb96dd954a624d59f8b87780dfae21def0e09" }, "downloads": -1, "filename": "django-simple-autocomplete-0.3.tar.gz", "has_sig": false, "md5_digest": "a3d0e79f7df79490e8e7976636832fb1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14861, "upload_time": "2012-09-06T12:57:30", "url": "https://files.pythonhosted.org/packages/62/ca/a00d2f156c9e87170aa5cc8ee9592141eec8b5363b578c90bd61442c8e05/django-simple-autocomplete-0.3.tar.gz" } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "e95339abdc58c4f35845b3aa3f264fd7", "sha256": "b59af5cfe2d8e0e2268e98bff04c981f9e880536d576601e3e7b13c83a6e1eee" }, "downloads": -1, "filename": "django_simple_autocomplete-0.3.1-py2.7.egg", "has_sig": false, "md5_digest": "e95339abdc58c4f35845b3aa3f264fd7", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 17619, "upload_time": "2012-09-18T13:39:41", "url": "https://files.pythonhosted.org/packages/45/fb/5a56485f78d3b010f170e6e76163065f010f4c637adf74e01efec86aaf6e/django_simple_autocomplete-0.3.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "480116c6d51e4e56af634de24993656d", "sha256": "01abc18a668b9c7b43d6478e06b99205d56dc81c5a4196e017ff49f6984383fb" }, "downloads": -1, "filename": "django-simple-autocomplete-0.3.1.tar.gz", "has_sig": false, "md5_digest": "480116c6d51e4e56af634de24993656d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15118, "upload_time": "2012-09-18T13:39:39", "url": "https://files.pythonhosted.org/packages/1a/ed/e050affc7384b0842defad19287e382d778d78cc285c8fe5d425b869a78b/django-simple-autocomplete-0.3.1.tar.gz" } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "74d791173d13e50c764fc2180a1d326c", "sha256": "cc64beb37c646ad2688c0943d395beffbfb326f406eb6be06a5fa768076d4f5d" }, "downloads": -1, "filename": "django_simple_autocomplete-0.3.2-py2.7.egg", "has_sig": false, "md5_digest": "74d791173d13e50c764fc2180a1d326c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 17902, "upload_time": "2013-02-26T10:10:36", "url": "https://files.pythonhosted.org/packages/f1/80/709ef59afedfa8dd4ed1cc8785af1ab713f729faf73c605ff34052ac1bca/django_simple_autocomplete-0.3.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "dfddf21f9adfc325d3e112d1ffdb8acc", "sha256": "3fa414afd8a6612a24f4cad3b4c2fb0b884a30b4c5f8fdd6a365ecd6ce258c01" }, "downloads": -1, "filename": "django-simple-autocomplete-0.3.2.tar.gz", "has_sig": false, "md5_digest": "dfddf21f9adfc325d3e112d1ffdb8acc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8315, "upload_time": "2013-04-02T07:49:40", "url": "https://files.pythonhosted.org/packages/a6/6a/84e33408abf3a0328ad805e01c8a7205ef61ed0470881216e418bf638906/django-simple-autocomplete-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "b21b7951fd84d19003391548f9966adf", "sha256": "f7275f9732ceefce010e088488abe6b2646a4380bc8db42c8900af186ec3f1e5" }, "downloads": -1, "filename": "django_simple_autocomplete-0.3.3-py2.7.egg", "has_sig": false, "md5_digest": "b21b7951fd84d19003391548f9966adf", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 18005, "upload_time": "2013-06-24T14:01:05", "url": "https://files.pythonhosted.org/packages/91/00/dfd9c4eba662845cbcaba47523a5da78c9c68516fdd42eb21ffda0fa68a0/django_simple_autocomplete-0.3.3-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "7c345ca2ce65f5d8607d39fa49a84684", "sha256": "7a65d3c637b5aa1de0972ebddf3bc69b01a714d61ec90474673b3a8387274484" }, "downloads": -1, "filename": "django-simple-autocomplete-0.3.3.tar.gz", "has_sig": false, "md5_digest": "7c345ca2ce65f5d8607d39fa49a84684", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15704, "upload_time": "2013-06-24T14:01:01", "url": "https://files.pythonhosted.org/packages/c1/af/c414a2f52ef4f43c6d538192a398d861ca49fe7cc56445b9ec623377d543/django-simple-autocomplete-0.3.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "d5200689b859aadd96ac93551b0aca4d", "sha256": "b78ce739a2924d6e716fb7e9d8da2e273ff4fdabf232de766234fdf102917989" }, "downloads": -1, "filename": "django_simple_autocomplete-0.4-py2.7.egg", "has_sig": false, "md5_digest": "d5200689b859aadd96ac93551b0aca4d", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 17980, "upload_time": "2014-02-26T11:29:45", "url": "https://files.pythonhosted.org/packages/18/37/902e3273e1ac3989447300f829a4526d1e6e7685bdeca7f4e5057f29cb0c/django_simple_autocomplete-0.4-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "2bdbb8beee87f4d6fbbd7a8467665d54", "sha256": "2b18aa725bded790012cedd879e727a65151bfc69f34cd27f9c639bc877c55df" }, "downloads": -1, "filename": "django-simple-autocomplete-0.4.tar.gz", "has_sig": false, "md5_digest": "2bdbb8beee87f4d6fbbd7a8467665d54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14162, "upload_time": "2014-02-26T11:29:42", "url": "https://files.pythonhosted.org/packages/2d/07/59166191462d89b4748cf6f448d85ac69a1ca33a4774e24364b806727985/django-simple-autocomplete-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "1780ae4c12176ff8c6b327de34d96134", "sha256": "9a61b9c669e477481a04c6b4b9c8d0ad9a80db9a411bb49cd3e025bfac7fee3f" }, "downloads": -1, "filename": "django_simple_autocomplete-0.5-py2.7.egg", "has_sig": false, "md5_digest": "1780ae4c12176ff8c6b327de34d96134", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 18421, "upload_time": "2015-05-22T13:01:56", "url": "https://files.pythonhosted.org/packages/51/b3/08cb0af344d1d344ec82b4da7b7bb6b5c356f706147b1a79dc824165772d/django_simple_autocomplete-0.5-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "701ad96e3d53694eb485f192d05665fc", "sha256": "ace7d149757ce96c51cb445338d5b253f77fb8b7e4f4f1c9da5ba78f90258839" }, "downloads": -1, "filename": "django-simple-autocomplete-0.5.tar.gz", "has_sig": false, "md5_digest": "701ad96e3d53694eb485f192d05665fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15975, "upload_time": "2015-05-22T13:01:51", "url": "https://files.pythonhosted.org/packages/ca/95/136461e2ef967dad0642647dcdb2647d8c8e5bc2908b09dd8fb6ecb5a7fb/django-simple-autocomplete-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "9c38e5cb8d7ef426b648e926707a5d24", "sha256": "1a6af1424238d1701fd6d1f47484e1058e76cc56b28e7b5023ce2d62a69e17fd" }, "downloads": -1, "filename": "django_simple_autocomplete-0.5.1-py2.7.egg", "has_sig": false, "md5_digest": "9c38e5cb8d7ef426b648e926707a5d24", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 18518, "upload_time": "2016-01-15T08:04:19", "url": "https://files.pythonhosted.org/packages/4c/44/65d2a3f7f5e6a9e902b5934c3ce255c26936ae471ee2fa8a7e5bcf83fa4f/django_simple_autocomplete-0.5.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a7283f638701cf06ff255cc51c3e6970", "sha256": "e3c133dcc3e008276ffb9adbfbfcd44b35ebaad7100657307dc3b2932081b90a" }, "downloads": -1, "filename": "django-simple-autocomplete-0.5.1.tar.gz", "has_sig": false, "md5_digest": "a7283f638701cf06ff255cc51c3e6970", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16175, "upload_time": "2016-01-15T08:03:43", "url": "https://files.pythonhosted.org/packages/aa/4b/cbc4cdf5c127f901ea61891cde6a11f1920a1a8312424d3974aa109b6c07/django-simple-autocomplete-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "b8f0a829b8513370c4d3c9d927098d41", "sha256": "b5f714dffc378da039e31b0aa8fbbd8f2a26aa2cdd29fc0921ebda95bc0531f6" }, "downloads": -1, "filename": "django_simple_autocomplete-0.5.2-py2.7.egg", "has_sig": false, "md5_digest": "b8f0a829b8513370c4d3c9d927098d41", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 18567, "upload_time": "2016-10-27T15:57:19", "url": "https://files.pythonhosted.org/packages/a5/ee/c5d304b5f24e8cbf372e86cd0ca5439378891c372e6113ed2fe9bb668e15/django_simple_autocomplete-0.5.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "1ec1e6e11ecfa2ac3584323fee993aeb", "sha256": "df2c3d13a6d1a3012f69529d511c34c61adf3a81c982215ba082e1336719477c" }, "downloads": -1, "filename": "django-simple-autocomplete-0.5.2.tar.gz", "has_sig": false, "md5_digest": "1ec1e6e11ecfa2ac3584323fee993aeb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14765, "upload_time": "2016-10-27T15:57:15", "url": "https://files.pythonhosted.org/packages/7e/21/5179969f117ce4fe2bf3da2a735b6035492a6feadddc5ec1b3f8e97d2139/django-simple-autocomplete-0.5.2.tar.gz" } ], "1.11": [ { "comment_text": "", "digests": { "md5": "60da170a25d11adde4912258d696fa01", "sha256": "5c3bae1733cdfe6e94a51a41a20076fe256fa53dfaf752b00f916981ede8ac60" }, "downloads": -1, "filename": "django_simple_autocomplete-1.11-py2.7.egg", "has_sig": false, "md5_digest": "60da170a25d11adde4912258d696fa01", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 161238, "upload_time": "2017-09-18T08:36:40", "url": "https://files.pythonhosted.org/packages/f1/ff/51814da28816703daad913d94f2f2302fd146f010153738f25f5000a97fa/django_simple_autocomplete-1.11-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "772957d6f6d81a614c7717395410b3f1", "sha256": "9793c79d81f14a7151ddaacda9bbd3c1298f829e251e55589d93006be1c0b04d" }, "downloads": -1, "filename": "django-simple-autocomplete-1.11.tar.gz", "has_sig": false, "md5_digest": "772957d6f6d81a614c7717395410b3f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 148596, "upload_time": "2017-09-18T08:36:36", "url": "https://files.pythonhosted.org/packages/3f/3b/c5a1dd8de64e8e2b47be2fd8b61e3c093d53502147a21006775648876635/django-simple-autocomplete-1.11.tar.gz" } ], "1.9": [ { "comment_text": "", "digests": { "md5": "753f59de06d85c4240ac8a14367982c9", "sha256": "818b5b7d445e7a9afeedc4a1167371ee37a3318c8b16ead0f0014bc2f633e731" }, "downloads": -1, "filename": "django_simple_autocomplete-1.9-py2.7.egg", "has_sig": false, "md5_digest": "753f59de06d85c4240ac8a14367982c9", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 25538, "upload_time": "2016-11-08T14:31:01", "url": "https://files.pythonhosted.org/packages/bd/0e/7899994dbe30fcf33709155b4410e76304efff39fa739c5d307ce923f00a/django_simple_autocomplete-1.9-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "e93f1a3c849e37678c2939a27e8f25a6", "sha256": "addc1405e61d16ca47b942d46aeb986e23610ccf75bbcac9575e73c4fb9fa166" }, "downloads": -1, "filename": "django-simple-autocomplete-1.9.tar.gz", "has_sig": false, "md5_digest": "e93f1a3c849e37678c2939a27e8f25a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 150277, "upload_time": "2016-11-08T14:30:57", "url": "https://files.pythonhosted.org/packages/96/af/9b8f517f3385ffa75b75b0dcb370f65c9524586e8ed1285c81b9ddac74ee/django-simple-autocomplete-1.9.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "1cbbb5bec62556fa68cf8b8209a4f528", "sha256": "1deaf44ba682d915c8496d7cfc5ff7fe36b8fd1212275ac0254bafac56778e29" }, "downloads": -1, "filename": "django_simple_autocomplete-1.9.1-py2.7.egg", "has_sig": false, "md5_digest": "1cbbb5bec62556fa68cf8b8209a4f528", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 159790, "upload_time": "2016-11-22T13:39:09", "url": "https://files.pythonhosted.org/packages/90/e9/43ece78aeebcc696100e384be73b05c7a2f9dfcdfff6a1df8973b205f513/django_simple_autocomplete-1.9.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "702f3521e0ad9e37dadb8c00702125ee", "sha256": "ca0a416964165f86df18d4b6e3e88faf56735f17c49a5bd5b76413530fbab0ea" }, "downloads": -1, "filename": "django-simple-autocomplete-1.9.1.tar.gz", "has_sig": false, "md5_digest": "702f3521e0ad9e37dadb8c00702125ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 150360, "upload_time": "2016-11-22T13:39:04", "url": "https://files.pythonhosted.org/packages/6f/d9/4a3f969152bd025a729d62594dc248b1afb1b09a7d1310b7240c15fa5f72/django-simple-autocomplete-1.9.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "60da170a25d11adde4912258d696fa01", "sha256": "5c3bae1733cdfe6e94a51a41a20076fe256fa53dfaf752b00f916981ede8ac60" }, "downloads": -1, "filename": "django_simple_autocomplete-1.11-py2.7.egg", "has_sig": false, "md5_digest": "60da170a25d11adde4912258d696fa01", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 161238, "upload_time": "2017-09-18T08:36:40", "url": "https://files.pythonhosted.org/packages/f1/ff/51814da28816703daad913d94f2f2302fd146f010153738f25f5000a97fa/django_simple_autocomplete-1.11-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "772957d6f6d81a614c7717395410b3f1", "sha256": "9793c79d81f14a7151ddaacda9bbd3c1298f829e251e55589d93006be1c0b04d" }, "downloads": -1, "filename": "django-simple-autocomplete-1.11.tar.gz", "has_sig": false, "md5_digest": "772957d6f6d81a614c7717395410b3f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 148596, "upload_time": "2017-09-18T08:36:36", "url": "https://files.pythonhosted.org/packages/3f/3b/c5a1dd8de64e8e2b47be2fd8b61e3c093d53502147a21006775648876635/django-simple-autocomplete-1.11.tar.gz" } ] }