Skip to main content

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)

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

unholster.django-lookup-0.1.0.tar.gz (7.6 kB view details)

Uploaded Source

File details

Details for the file unholster.django-lookup-0.1.0.tar.gz.

File metadata

File hashes

Hashes for unholster.django-lookup-0.1.0.tar.gz
Algorithm Hash digest
SHA256 c4bda74aa6ea3383a22b64d453ed800cefc4e7370c748a3917f1b7bf93c2f550
MD5 59ca7e777dbd4ee88d4b02121b42137a
BLAKE2b-256 7f25d34bb1eb0ed5bdc069126f8745f4f5849104c3726f35074fee9114042459

See more details on using hashes here.

Supported by

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