Skip to main content

No project description provided

Project description

Django Autocomplete

substring occurrence search module.

Allows the use of celery, if it is in the mood. The following settings are required in settings.py

AUTOCOMPLETER = {
   'SERILEZER_CLASSES': 'your_module_name.autocompleter',
   'LIMIT': 5,
   'CELERY': True
   }

Where:

  1. SERILEZER_CLASSES - indicates django_autompleter where to look for serialization ticket offices. The serialization class inherits from the base class SearcherSerializer. In the example below, we indicate which fields from the Publication model we want to return when requested.

from autocompleter import SearcherSerializer

class PublicationsSerializer(SearcherSerializer):
      class Meta:
          model = Publication
          fields = (
              'id',
              'title',
              ) 
  1. LIMIT - indicates the number of records received that must be returned.
  2. CELERY - indicates the start of the autompleter as a celery task. It is important, in this case, your project must have celery.py settings.

example:

from autocompleter import Autocompleter

autocomplete_coonection =  Autocompleter()

result = autocomplete_coonection.get(
               model=Publication,# search data model
               column=["title"],# list of columns of the model to search for
               value=value # value
           )

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_autocompleter-0.0.8.tar.gz (3.4 kB view details)

Uploaded Source

File details

Details for the file django_autocompleter-0.0.8.tar.gz.

File metadata

  • Download URL: django_autocompleter-0.0.8.tar.gz
  • Upload date:
  • Size: 3.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.40.1 CPython/3.6.8

File hashes

Hashes for django_autocompleter-0.0.8.tar.gz
Algorithm Hash digest
SHA256 63341e637b6e38e9d2dd475abe1652c8af7c58313c581214718a7ca3ca656cf5
MD5 259ea02bd9f31c2e10d54a7672bff3c1
BLAKE2b-256 0c2bd4067088bb69b01936161658fde0fd41ef9f8f785b13d4d788b23ec043c8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page