Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/textdistance/__init__.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

8 statements  

1""" 

2TextDistance. 

3Compute distance between sequences. 

430+ algorithms, pure python implementation, common interface. 

5""" 

6 

7# main package info 

8__title__ = 'TextDistance' 

9__version__ = '4.6.2' 

10__author__ = 'Gram (@orsinium)' 

11__license__ = 'MIT' 

12 

13 

14# version synonym 

15VERSION = __version__ 

16 

17 

18# app 

19from .algorithms import * # noQA 

20from .utils import * # noQA