Open martino-vic opened 3 years ago
This approach works for me.
>>> from gruut_ipa import Pronunciation
>>> Pronunciation.from_string('/dʒʌst ə kaʊ/').phones
[d, ʒ, ʌ, s, t, ə, k, a, ʊ]
It should be noted, that phones
property contains not list of strings, but list of gruut_ipa.Phone
instances.
Hello, I'm trying to use gruut-ipa 0.10.0 on Windows 10 and Python 3.9. I need to group phones into phonemes for English:
How would this look in the python interpreter? I've tried
But I couldn't find an answer there.