jamesturk / jellyfish

🪼 a python library for doing approximate and phonetic matching of strings.
https://jamesturk.github.io/jellyfish/
MIT License
2.04k stars 157 forks source link

jaro_distance missing? #198

Closed yi0n closed 9 months ago

yi0n commented 10 months ago

Hi,

it seems the jellyfish.jaro_distance() function isn't available anymore. I didn't found any information about that in the changelog. Official site and docs still displays the function in the example code.

Has this to do with #122 ?

PatrickKudo commented 10 months ago

Yes, it appears it was changed to jaro_similarity() as of jellyfish==1.0. See https://jamesturk.github.io/jellyfish/functions/

jellyfish.jaro_similarity("New","Now")

jamesturk commented 10 months ago

Thanks for pointing out the old README/docs. I'll update that for the next release once the Python 3.12 issue is resolved.