🎐 a python library for doing approximate and phonetic matching of strings.
Go to file
James Turk 963572d8fb coveragerc 2014-08-11 15:02:13 -04:00
cjellyfish Changed jaro-winkler to only perform winkler step if both strings are at least 4 characters long 2014-07-24 16:19:27 -06:00
jellyfish update tests 2014-08-11 14:38:46 -04:00
.coveragerc coveragerc 2014-08-11 15:02:13 -04:00
.gitignore update tests 2014-08-11 14:38:46 -04:00
.travis.yml update travis 2014-08-11 14:44:32 -04:00
LICENSE LICENSE 2010-07-13 14:03:17 -04:00
MANIFEST.in install right .h files 2014-07-16 08:23:11 -04:00
README.rst add coveralls badge, #21 2014-08-11 14:59:49 -04:00
porter-test.csv add semi-broken porter.py 2013-04-18 00:48:19 -04:00
setup.py 0.3.2 2014-08-11 14:20:07 -04:00
tox.ini update tests 2014-08-11 14:38:46 -04: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.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


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'