File: levenshtein.rst

package info (click to toggle)
python-levenshtein 0.27.1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 304 kB
  • sloc: cpp: 724; python: 291; makefile: 20; sh: 13
file content (70 lines) | stat: -rw-r--r-- 1,069 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
Levenshtein module
==================

distance
--------
.. autofunction:: Levenshtein.distance

ratio
-----
.. autofunction:: Levenshtein.ratio

hamming
-------
.. autofunction:: Levenshtein.hamming

jaro
----
.. autofunction:: Levenshtein.jaro

jaro_winkler
------------
.. autofunction:: Levenshtein.jaro_winkler

median
------
.. autofunction:: Levenshtein.median

median_improve
--------------
.. autofunction:: Levenshtein.median_improve

quickmedian
-----------
.. autofunction:: Levenshtein.quickmedian

setmedian
---------
.. autofunction:: Levenshtein.setmedian

seqratio
--------
.. autofunction:: Levenshtein.seqratio

setratio
--------
.. autofunction:: Levenshtein.setratio

editops
-------
.. autofunction:: Levenshtein.editops

opcodes
-------
.. autofunction:: Levenshtein.opcodes

inverse
-------
.. autofunction:: Levenshtein.inverse

apply_edit
----------
.. autofunction:: Levenshtein.apply_edit

matching_blocks
---------------
.. autofunction:: Levenshtein.matching_blocks

subtract_edit
-------------
.. autofunction:: Levenshtein.subtract_edit