{"id":13814001,"url":"https://github.com/peopledoc/django-agnocomplete","last_synced_at":"2025-11-03T18:30:24.319Z","repository":{"id":2767297,"uuid":"41902792","full_name":"peopledoc/django-agnocomplete","owner":"peopledoc","description":"A front-end agnostic toolbox for autocompletion fields","archived":false,"fork":false,"pushed_at":"2024-08-20T10:07:48.000Z","size":800,"stargazers_count":19,"open_issues_count":9,"forks_count":8,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-02-08T05:05:21.887Z","etag":null,"topics":["approved-public","ghec-mig-migrated","tribe-python"],"latest_commit_sha":null,"homepage":"http://django-agnocomplete.readthedocs.org/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/peopledoc.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-09-04T07:14:27.000Z","updated_at":"2023-09-27T19:09:53.000Z","dependencies_parsed_at":"2024-06-21T13:02:24.175Z","dependency_job_id":"b711f20c-db16-45cf-8e67-9e688b0dd46c","html_url":"https://github.com/peopledoc/django-agnocomplete","commit_stats":{"total_commits":318,"total_committers":21,"mean_commits":"15.142857142857142","dds":"0.37106918238993714","last_synced_commit":"cbc41940305faeffa914a625a506f305729e50a9"},"previous_names":[],"tags_count":33,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peopledoc%2Fdjango-agnocomplete","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peopledoc%2Fdjango-agnocomplete/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peopledoc%2Fdjango-agnocomplete/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peopledoc%2Fdjango-agnocomplete/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/peopledoc","download_url":"https://codeload.github.com/peopledoc/django-agnocomplete/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239418570,"owners_count":19635208,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["approved-public","ghec-mig-migrated","tribe-python"],"created_at":"2024-08-04T04:01:39.542Z","updated_at":"2025-11-03T18:30:24.225Z","avatar_url":"https://github.com/peopledoc.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"============================\nDjango Agnostic Autocomplete\n============================\n\n\n.. image:: https://travis-ci.org/peopledoc/django-agnocomplete.svg?branch=master\n    :target: https://travis-ci.org/peopledoc/django-agnocomplete\n\n\nHeavily based on `django-autocomplete-light v2 \u003chttps://github.com/yourlabs/django-autocomplete-light/\u003e`_ workflow and concepts, this toolkit offers a front-end agnostic way to get fields for autocompletion.\n\nIt will provide:\n\n* a simple and configurable entry-point management,\n* a REST-like HTTP API to search for results,\n* Fields and widgets that will make the interface between our Django code and *your* Javascript.\n\nStatus\n======\n\nStable, used in production.\n\nInstall\n=======\n\n.. code:: sh\n\n    $ pip install django-agnocomplete\n\nOr add ``django-agnocomplete`` to your project requirements.\n\nDocumentation\n=============\n\n`The full documentation is browsable on Read the Docs \u003chttp://django-agnocomplete.readthedocs.org/en/latest/\u003e`_\n\n\nTests\n=====\n\nInstall ``tox`` in your environment (it could be a virtualenv) and run:\n\n.. code:: sh\n\n    $ tox\n\nIt'll run the tests for all the combinations of the following:\n\n* Python 3.6, 3.7, 3.8, 3.9.\n* Django 2.2.\n\nand a ``flake8`` check.\n\nAre you a developer?\n--------------------\n\nTo target a specific test case, use the following:\n\n.. code:: sh\n\n    $ tox -e py37-django22 --  demo.tests.test_core.AutocompleteChoicesPagesOverrideTest\n\nEverything after the double-dash will be passed to the django-admin.py test command.\n\nIf you need to install a debugger (let's say `ipdb`), you can use the ``TOX_EXTRA`` environment variable like this:\n\n.. code:: sh\n\n    $ TOX_EXTRA=ipdb tox -e py36-django22\n\n.. note::\n\n    We've got a self documented Makefile for common tasks, such as running the tests, building the docs, etc.\n\nRun the demo\n============\n\nThe (draft) demo site can be browsed using the Django devserver. Run:\n\n.. code:: sh\n\n    $ make serve\n\nIt will run a syncdb (it may ask you questions) and then a runserver with your current ``demo.settings``. You can browse the (very rough) website at http://127.0.0.1:8000/. You can add\nany runserver options you want using the `tox` positional parameters, like this:\n\n.. code:: sh\n\n    $ tox -e serve -- 9090  # to change the listening port\n\n\nHere you'll be able to see that ``django-agnocomplete`` has been easily and rapidly integrated with ``selectize.js``, ``select2``, ``jquery-autocomplete`` and ``typeahead``. With the same backend, you can plug the JS front-end you want.\n\nTroubles running the demo?\n--------------------------\n\nThis demo project is not build as a production-ready application, models can change, but there's no migration in it. If you have database errors, you can try to remove it using:\n\n.. code:: sh\n\n    $ make clean-db\n\nOr, for more radical cleanup:\n\n.. code:: sh\n\n    $ make clean-all\n\n\nLicense\n=======\n\nThis piece of software is being published under the terms of the MIT License. Please read the `LICENSE` file for more details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeopledoc%2Fdjango-agnocomplete","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpeopledoc%2Fdjango-agnocomplete","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeopledoc%2Fdjango-agnocomplete/lists"}