Datasette plugin adding SQL functions for Double Metaphone fuzzy text matching
Project description
datasette-doublemetaphone
Datasette plugin that adds custom SQL functions for fuzzy string matching, built on top of the Double Metaphone Python library.
As SQLite custom functions must return a string, we have separate calls for the two results, or one that returns a JSON array of the two results.
Examples:
SELECT double_metaphone_main("richard");
-- Outputs 'RXRT'
SELECT double_metaphone_alt("richard");
-- Outputs 'RKRT'
SELECT double_metaphone_json("richard");
-- Outputs '["RXRT", "RKRT"]'
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.
Built Distribution
Close
Hashes for datasette_doublemetaphone-0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c25a416883a99fe85ffb48eaebe8bf9bf6f92369b86a5d100e55985df30d73c |
|
MD5 | 0df3e4177e195299f1736c28d0d35651 |
|
BLAKE2-256 | 5fc904dd3f686b43eae0751ef8eb12e167d02319987cfd6016675a4bbfe337c5 |