About Approximate Dictionary Matching
You can match dictionary keys approximately using the thefuzz
library:
>>> from thefuzz import process
>>> FRUITS = {"apples": "🍎", "bananas": "🍌", "cherries": "🍒"}
>>> def get_approximate_value(d, key):
... corrected_key, preciseness = process.extractOne(
... query=key, choices=d.keys()
... )
... return d[corrected_key]
>>> get_approximate_value(FRUITS, "CHERRY")
'🍒'
Install thefuzz
and its dependency for the speed by pip as follows:
(venv)$ pip install thefuzz
(venv)$ pip install python-Levenshtein
Also by me
Django Paddle Subscriptions app
For Django-based SaaS projects.
Django App for You
Django GDPR Cookie Consent app
For Django websites that use cookies.
Django App for You