fb16dfecae
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
19 lines
476 B
Text
19 lines
476 B
Text
Fuzzy string matching like a boss. It uses Levenshtein Distance to calculate
|
|
the differences between sequences in a simple-to-use package.
|
|
|
|
Simple Ratio
|
|
|
|
>>> fuzz.ratio("this is a test", "this is a test!")
|
|
97
|
|
|
|
Partial Ratio
|
|
|
|
>>> fuzz.partial_ratio("this is a test", "this is a test!")
|
|
100
|
|
|
|
Token Sort Ratio
|
|
|
|
>>> fuzz.ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear")
|
|
91
|
|
>>> fuzz.token_sort_ratio("fuzzy wuzzy was a bear", "wuzzy fuzzy was a bear")
|
|
100
|