@@ -39,11 +39,33 @@ class Product(models.Model):
3939Product.objects.filter(description = ParadeDB(' shoes' ))
4040```
4141
42+ ## Feature Support
43+
44+ Supported:
45+
46+ - ParadeDB lookup with AND/OR operators (` &&& ` , ` ||| ` )
47+ - ` PQ ` boolean composition
48+ - Search expressions: ` Phrase ` , ` Fuzzy ` , ` Parse ` , ` Term ` , ` Regex `
49+ - Annotations: ` Score ` , ` Snippet `
50+ - ` BM25Index ` DDL generation (basic + JSON field keys)
51+ - ` MoreLikeThis ` query filter
52+ - Django ORM integration with ` Q ` , standard filters, and window functions
53+
54+ Unsupported / pending:
55+
56+ - Faceted search (` .facets() ` and ` pdb.agg(...) ` integration)
57+
4258## Documentation
4359
44- - ** Package Documentation** : https://paradedb.github.io/django-paradedb
45- - ** ParadeDB Official Docs** : https://docs.paradedb.com
46- - ** ParadeDB Website** : https://paradedb.com
60+ - ** Package Documentation** : < https://paradedb.github.io/django-paradedb >
61+ - ** ParadeDB Official Docs** : < https://docs.paradedb.com >
62+ - ** ParadeDB Website** : < https://paradedb.com >
63+
64+ ## Requirements
65+
66+ - Python 3.13+
67+ - Django 6.0+
68+ - PostgreSQL with ParadeDB extension
4769
4870## Development
4971
@@ -60,10 +82,6 @@ pytest
6082# Run linting
6183ruff check .
6284ruff format .
63-
64- # Build docs locally
65- pip install -e " .[docs]"
66- mkdocs serve
6785```
6886
6987## Support
@@ -87,4 +105,4 @@ We would like to thank the following members of the Django community for their v
87105
88106## License
89107
90- django-paradedb is licensed under the [ MIT License] ( LICENSE ) .
108+ django-paradedb is licensed under the [ MIT License] ( LICENSE ) .
0 commit comments