Search index for Django.
Project description
Pony Indice is a Django re-usable app to create a simple search engine for your project.
Install
Install it as usual (pip coming):
pip install pony-indice
Add the app in your INSTALLED_APPS:
INSTALLED_APPS = ( ... 'pony_indice', ... )
And launch the migration to create the table:
./manage.py migrate
Usage
The usage is quite simple:
from pony_indice import registry as indice_registry @indice_registry.register() class YourModel(models.Models): rank = models.IntegerField()
Now your model is tagged as “tracked” and the following behaviors are added:
On post_save signals a Link will be created/updated in database
On post_delete the Link will be mark as “removed”
(Update aren’t taken in account and may lead to broken URLs)
Basicaly this app is based on the other decorated models, but you can easily import pony_indice.models.Link and add the link which you want, especialy external ones.
Tools
QuerySet
The Link’s queryset has the method filter_q method, which is a simple filter looking if fields display or description contain a string. Useful to create easily any search tool.
Admin
Of course the admin interface is already configured.
REST Framework
pony_indice.contrib.rest_framework.serializers.LinkSerializer and pony_indice.contrib.rest_framework.viewsets.LinkViewsets are here to play quickly with Django REST Framework.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pony-indice-1.0.1.tar.gz
.
File metadata
- Download URL: pony-indice-1.0.1.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.9.1 pkginfo/1.4.1 requests/2.18.4 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.19.4 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40c47e2947edfe7f44f34d56b19d5e1e599be06eca5296b6b1ab3a0a0c7cb711 |
|
MD5 | 0942b22169d2a35891a3d150a614d09d |
|
BLAKE2b-256 | 66162f83d26925b4919b9655970e84968f109d6d0a9b12f837572a316fd9192d |