ipapy icon indicating copy to clipboard operation
ipapy copied to clipboard

ipapy is a Python module to work with International Phonetic Alphabet (IPA) strings

Results 5 ipapy issues
Sort by recently updated
recently updated
newest added

Simple commit to resolve fatal error.

I get the following error when I try to use IPAString in new project ``` from ipapy.ipastring import IPAString if __name__ == '__main__': IPAString(unicode_string="tɛst") ``` Error: ``` Traceback (most recent...

The `ARPABETMapper` class seems to map some IPA phones to phones that are not part of ARPABET. So far I've seen the following examples: `{'EA', 'IA', 'OH', 'Q', 'UA'}` Code...

In Python 3.7, importing ABCs directly from the collections module shows a warning and the import is deprecated since Python 3.8+ See: https://github.com/python/cpython/commit/c66f9f8d3909f588c251957d499599a1680e2320 Pull request added different compatible import methods...

Ipapy by default shares the representation of the characters which leads to strange behaviours: ``` s = IPAString(unicode_string=r"pæk") s[0].voicing = 'voiced' print(s[0].voicing) # voiced print(s[0].canonical_representation) # bilabial consonant plosive voiceless...