🎐 a python library for doing approximate and phonetic matching of strings.
Go to file
James Turk 702982e7df 0.4.0 2015-03-27 16:39:04 -04:00
cjellyfish@8696a5e01e update cjellyfish and define CJELLYFISH_PYTHON in build 2015-03-27 16:37:38 -04:00
docs Hamming docs, closes #33 2015-03-03 13:47:03 -05:00
jellyfish update testdata for porter 2015-03-04 13:32:41 -05:00
testdata@14d93b5c91 update testdata for porter 2015-03-04 13:32:41 -05:00
.coveragerc coveragerc 2014-08-11 15:02:13 -04:00
.gitignore initial pass at algorithms docs 2015-02-24 18:15:51 -05:00
.gitmodules move cjellyfish to new repository, related to #35 2015-03-27 14:34:33 -04:00
.travis.yml install tox maybe 2015-02-24 17:53:52 -05:00
LICENSE bump year 2015-03-27 14:38:55 -04:00
MANIFEST.in install right .h files 2014-07-16 08:23:11 -04:00
README.rst RtD badge 2015-02-27 01:05:26 -05:00
run-cov.sh quite a few tests for NYSIIS, fixing some issues in the C implementation 2015-02-19 17:34:45 -05:00
setup.py 0.4.0 2015-03-27 16:39:04 -04:00
tox.ini some flake8 ignores 2015-02-24 10:54:57 -05:00

README.rst

=========
jellyfish
=========

.. image:: https://travis-ci.org/sunlightlabs/jellyfish.svg?branch=master
    :target: https://travis-ci.org/sunlightlabs/jellyfish

.. image:: https://coveralls.io/repos/sunlightlabs/jellyfish/badge.png?branch=master
    :target: https://coveralls.io/r/sunlightlabs/jellyfish

.. image:: https://pypip.in/version/jellyfish/badge.svg
    :target: https://pypi.python.org/pypi/jellyfish

.. image:: https://pypip.in/format/jellyfish/badge.svg
    :target: https://pypi.python.org/pypi/jellyfish

.. image:: https://readthedocs.org/projects/jellyfish/badge/?version=latest
    :target: https://readthedocs.org/projects/jellyfish/?badge=latest
    :alt: Documentation Status


Jellyfish is a python library for doing approximate and phonetic matching of strings.

jellyfish is a project of Sunlight Labs (c) 2014.
All code is released under a BSD-style license, see LICENSE for details.

Written by James Turk <jturk@sunlightfoundation.com> and Michael Stephens.

See https://github.com/sunlightlabs/jellyfish/graphs/contributors for contributors.

Source is available at http://github.com/sunlightlabs/jellyfish.

Included Algorithms
===================

String comparison:

  * Levenshtein Distance
  * Damerau-Levenshtein Distance
  * Jaro Distance
  * Jaro-Winkler Distance
  * Match Rating Approach Comparison
  * Hamming Distance

Phonetic encoding:

  * American Soundex
  * Metaphone
  * NYSIIS (New York State Identification and Intelligence System)
  * Match Rating Codex

Example Usage
=============

>>> import jellyfish
>>> jellyfish.levenshtein_distance('jellyfish', 'smellyfish')
2
>>> jellyfish.jaro_distance('jellyfish', 'smellyfish')
0.89629629629629637
>>> jellyfish.damerau_levenshtein_distance('jellyfish', 'jellyfihs')
1

>>> jellyfish.metaphone('Jellyfish')
'JLFX'
>>> jellyfish.soundex('Jellyfish')
'J412'
>>> jellyfish.nysiis('Jellyfish')
'JALYF'
>>> jellyfish.match_rating_codex('Jellyfish')
'JLLFSH'