Skip to content

Python Set subclass that supports searching by ngram similarity

License

LGPL-3.0, GPL-3.0 licenses found

Licenses found

LGPL-3.0
COPYING.LESSER
GPL-3.0
COPYING
Notifications You must be signed in to change notification settings

gpoulter/python-ngram

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2896d63 · Sep 15, 2021
Sep 15, 2021
May 1, 2020
Jun 20, 2017
Sep 10, 2021
Sep 10, 2021
Jun 29, 2012
Jun 29, 2012
Sep 10, 2021
Sep 10, 2021
Jun 29, 2012
Sep 10, 2021
Sep 10, 2021
Sep 15, 2021
Sep 10, 2021
Sep 15, 2021

Repository files navigation

The NGram class extends the Python 'set' class with efficient fuzzy search for members by means of an N-gram similarity measure. It also has static methods to compare a pair of strings.

The N-grams are character based not word-based, and the class does not implement a language model, merely searching for members by string similarity.

See the documentation, which includes a tutorial and release notes.

Use the GitHub issue tracker to report issues.

Installation

To install python-ngram from PyPI:

pip install ngram

How does it work?

The set stores arbitrary items, but for non-string items a key function (such as str) must be specified to provide a string represenation. The key function can also be used to normalise string items (e.g. lower-casing) prior to N-gram indexing.

To index a string it pads the string with a specified dummy character, then splits it into overlapping substrings of N (default N=3) characters in length and associates each N-gram to the items that use it.

To find items similar to a query string, it splits the query into N-grams, collects all items sharing at least one N-gram with the query, and ranks the items by score based on the ratio of shared to unshared N-grams between strings.

History

In 2007, Michel Albert (exhuma) wrote the python-ngram module based on Perl's String::Trigram module by Tarek Ahmed, and committed the code for 2.0.0b2 to a now-disused Sourceforge subversion repo.

Since late 2008, Graham Poulter has maintained python-ngram, initially refactoring it to build on the set class, and also adding features, documentation, tests, performance improvements and Python 3 support.

Development

Development takes place on Github. On checking out the repo run tox to build the Sphinx documentation and run tests. Run pip install -e . to install the module in editable mode, inside a virtualenv.

About

Python Set subclass that supports searching by ngram similarity

Topics

Resources

License

LGPL-3.0, GPL-3.0 licenses found

Licenses found

LGPL-3.0
COPYING.LESSER
GPL-3.0
COPYING

Stars

Watchers

Forks

Packages

No packages published

Languages