Skip to main content

A library for indexing Django models with Elasicsearch, OpenSearch or database and searching them with the Django ORM.

Project description

Django ModelSearch

Build Status License Version Documentation

Django ModelSearch allows you to index Django models and search them using the ORM!

It supports PostgreSQL FTS, SQLite FTS5, Elasticsearch (7.x, 8.x, and 9.x), and OpenSearch (1.x, 2.x, and 3.x).

Features:

  • Index models in Elasticsearch and OpenSearch and query with the Django ORM
  • Reuse existing QuerySets for search, works with Django paginators and django-filter
  • Also supports PostgreSQL FTS and SQLite FTS5
  • Autocomplete
  • Faceting
  • Per-field boosting
  • Fuzzy Search
  • Phrase search
  • Structured queries

This has been built into Wagtail CMS since 2014 and extracted into a separate package in March 2025.

Installation

Install with PIP, then add to INSTALLED_APPS in your Django settings:

pip install modelsearch
# settings.py

INSTALLED_APPS = [
    ...
    "modelsearch
    ...
]

By default, Django ModelSearch will index into the database configured in DATABASES["default"] and use PostgreSQL FTS or SQLite FTS, if available.

You can change the indexing configuration, or add additional backends with the MODALSEARCH_BACKENDS setting. For example, to configure Elasticsearch:

# settings.py

MODELSEARCH_BACKENDS = {
    'default': {
        'BACKEND': 'modelsearch.backends.elasticsearch8',
        'URLS': ['https://localhost:9200'],
        'INDEX_PREFIX': 'modelsearch_',
        'TIMEOUT': 5,
        'OPTIONS': {},
        'INDEX_SETTINGS': {},
    }
}

Indexing

To index a model, add modelsearch.index.Indexed to the model class and define some search_fields:

from modelsearch import index
from modelsearch.queryset import SearchableQuerySetMixin

class BookQuerySet(models.QuerySet, SearchableQuerySetMixin):
    pass

class Book(index.Indexed, models.Model):
    title = models.CharField(max_length=255)
    genre = models.CharField(max_length=255, choices=GENRE_CHOICES)
    author = models.ForeignKey(Author, on_delete=models.CASCADE)
    published_date = models.DateTimeField()

    objects = BookQuerySet.as_manager()

    search_fields = [
        index.SearchField('title', boost=10),
        index.AutocompleteField('title', boost=10),
        index.SearchField('get_genre_display'),

        index.FilterField('genre'),
        index.FilterField('author'),
        index.FilterField('published_date'),
    ]

Then run the rebuild_index management command to build the search index.

Searching

You can search models using the .search() QuerySet method (added by SearchableQuerySetMixin). For example:

>>> Book.objects.filter(author=roald_dahl).search("chocolate factory")
[<Book: Charlie and the chocolate factory>]

.search() can be used in conjunction with most other QuerySet Methods like .filter(), .exclude() or .order_by(). When using Elasticsearch, these are automatically converted to the same Elasticsearch Query, so any fields used here must be indexed with index.FilterField so they are added to the Elasticsearch index.

Autocomplete

To autocomplete a partial search query, use the .autocomplete() method. For example:

>>> Book.objects.filter(author=roald_dahl).search("choco")
[<Book: Charlie and the chocolate factory>]

Note that fields used in autocomplete need to also be indexed as an AutocompleteField as autocompletable fields need to be indexed differently.

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

modelsearch-1.0rc5.tar.gz (73.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

modelsearch-1.0rc5-py3-none-any.whl (89.9 kB view details)

Uploaded Python 3

File details

Details for the file modelsearch-1.0rc5.tar.gz.

File metadata

  • Download URL: modelsearch-1.0rc5.tar.gz
  • Upload date:
  • Size: 73.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.3

File hashes

Hashes for modelsearch-1.0rc5.tar.gz
Algorithm Hash digest
SHA256 6efab6231d68b4053080a7b24f15e47fbb6c6f50719fd7386d57ecd93b4b4239
MD5 1998856781b9007b395b0f1c5e4d1298
BLAKE2b-256 35df8a5adcf204878280034ef65d5453a76232bed898c24ca8dd484136bbd1f7

See more details on using hashes here.

File details

Details for the file modelsearch-1.0rc5-py3-none-any.whl.

File metadata

File hashes

Hashes for modelsearch-1.0rc5-py3-none-any.whl
Algorithm Hash digest
SHA256 32d68f058a1c081ed3a293eb1953dfdc0995494c88ab6037878b9250f0e7a161
MD5 35a7b0f67a7716a1e2d11ef09abdb802
BLAKE2b-256 df15611c08be3bd364521cbec451e132911b24a07bb3a22d27e355d7be81289e

See more details on using hashes here.

Supported by

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