Original, standard and customisable versions of the Jaro-Winkler functions.
Project description
JaroWinkler
Original, standard and customisable versions of the Jaro-Winkler functions.
>>> import jaro
>>> jaro.jaro_winkler_metric(u'SHACKLEFORD', u'SHACKELFORD')
0.9818181
>>> help(jaro)
Help on package jaro:
NAME
jaro - Python translation of the original Jaro-Winkler functions.
DESCRIPTION
The Jaro-Winkler functions compare two strings and return a score indicating
how closely the strings match. The score ranges from 0 (no match) to 1
(perfect match).
Two null strings ('') will compare as equal. Strings should be unicode
strings, and will be compared as given; the caller is responsible for
capitalisations and trimming leading/trailing spaces.
You should normally only need to use either the jaro_metric() or
jaro_winkler_metric() functions defined here. If you want to implement your
own, non-standard metrics, look at the comments and functions in the jaro.py
submodule.
PACKAGE CONTENTS
...
jaro
strcmp95
...
FUNCTIONS
jaro_metric(string1, string2)
The standard, basic Jaro string metric.
jaro_winkler_metric(string1, string2)
The Jaro metric adjusted with Winkler's modification, which boosts
the metric for strings whose prefixes match.
original_metric(string1, string2)
The same metric that would be returned from the reference Jaro-Winkler
C code, taking as it does into account a typo table and adjustments for
longer strings.
...
custom_metric(string1, string2, typo_table, typo_scale,
boost_threshold, pre_len, pre_scale, longer_prob)
Calculate the Jaro-Winkler metric with parameters of your own choosing.
...
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file jaro_winkler-2.0.3-py3-none-any.whl.
File metadata
- Download URL: jaro_winkler-2.0.3-py3-none-any.whl
- Upload date:
- Size: 33.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.38.0 CPython/3.6.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ad42a94eb110351e72dd5b9e0a0f1053b0760761d676f9be35da19ea80d511b
|
|
| MD5 |
2db9e9b70babe4f5fbeef107fba4dc27
|
|
| BLAKE2b-256 |
c6fbf62082539f2e62ecb70e1f8fefcea051f3e8f993731b3aa83dd1db5814f3
|