Easy SlugField management
Project description
django-lookup
=============
Lookup is a simple Django app to easy work with slug charfields and fuzzy finding in
your models.
Quick start
-----------
1. Add "lookup" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = (
...
'lookup',
)
2. Run `python manage.py syncdb` to create the lookup models.
Use example:
def option_key(self, option):
return option.name if hasattr(option, 'name') else option
...
fuzzy_string = "Some incorrectly spelled key"
# Creates a lookup object for the Territory model
zone_lookup = LookupTable(Territory)
# Creates a lookup list using what's already on the table.
zone_lookup.create_aliases(self.option_key)
# Obtains a territory using a slug from the fuzzy_string and tries to obtain the object associated to it
# if no exact matches, proposes alternatives using fuzzy finding or to create a new object.
zone, created = zone_lookup.prompt(fuzzy_string, defaults={'name': fuzzy_string, cutoff=0.5, n=5)
=============
Lookup is a simple Django app to easy work with slug charfields and fuzzy finding in
your models.
Quick start
-----------
1. Add "lookup" to your INSTALLED_APPS setting like this::
INSTALLED_APPS = (
...
'lookup',
)
2. Run `python manage.py syncdb` to create the lookup models.
Use example:
def option_key(self, option):
return option.name if hasattr(option, 'name') else option
...
fuzzy_string = "Some incorrectly spelled key"
# Creates a lookup object for the Territory model
zone_lookup = LookupTable(Territory)
# Creates a lookup list using what's already on the table.
zone_lookup.create_aliases(self.option_key)
# Obtains a territory using a slug from the fuzzy_string and tries to obtain the object associated to it
# if no exact matches, proposes alternatives using fuzzy finding or to create a new object.
zone, created = zone_lookup.prompt(fuzzy_string, defaults={'name': fuzzy_string, cutoff=0.5, n=5)
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 unholster.django-lookup-0.1.0.tar.gz
.
File metadata
- Download URL: unholster.django-lookup-0.1.0.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4bda74aa6ea3383a22b64d453ed800cefc4e7370c748a3917f1b7bf93c2f550 |
|
MD5 | 59ca7e777dbd4ee88d4b02121b42137a |
|
BLAKE2b-256 | 7f25d34bb1eb0ed5bdc069126f8745f4f5849104c3726f35074fee9114042459 |