Skip to content

Latest commit

 

History

History
48 lines (33 loc) · 1.17 KB

README.md

File metadata and controls

48 lines (33 loc) · 1.17 KB

phonetisch

Build Status PyPI version

Phonetic algorithms library in Python focusing of multiple languages.

Key features

  • Implementation of Soundex and Caverphone.
  • Simple to use.
  • Support multiple languages.
  • Supports Python 3.4+.

Installation

Use pip to install the latest version:

pip install phonetisch

Usage Examples

from phonetisch import soundex, caverphone

first_code = soundex.encode_word('Example')
second_code = soundex.encode_word('Ekzampul')

if first_code == second_code:
  print('Both words are homophones')
  
print(caverphone.encode_word("Thompson"))

Reference

Links

License

MIT License

Contributors