bazarr/libs/textdistance/__init__.py
JayZed eb296e13c1
Improved global search function
* Use Hamming textdistance library

Used Hamming textdistance to sort by closest match.

* Global search UI improvements

Increased dropdown height to show more results initially (and which can also be scrolled into view).
Scrollbars will appear automatically as needed.
Remove dropdown when Search box is cleared.

* Added textdistance 4.6.2 library
2024-06-08 06:14:39 -04:00

20 lines
355 B
Python

"""
TextDistance.
Compute distance between sequences.
30+ algorithms, pure python implementation, common interface.
"""
# main package info
__title__ = 'TextDistance'
__version__ = '4.6.2'
__author__ = 'Gram (@orsinium)'
__license__ = 'MIT'
# version synonym
VERSION = __version__
# app
from .algorithms import * # noQA
from .utils import * # noQA