mirror of
https://github.com/morpheus65535/bazarr.git
synced 2025-04-23 22:27:17 -04:00
* 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
20 lines
355 B
Python
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
|