We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
$ python3 -m gruut_ipa phonemes en-us "/dʒʌst ə kaʊ/" d͡ʒ ʌ s t ə k aʊ
How would this look in the python interpreter? I've tried
>>> import gruut_ipa >>> help(gruut_ipa.Phonemes)
But I couldn't find an answer there.
The text was updated successfully, but these errors were encountered:
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.
phones
gruut_ipa.Phone
Sorry, something went wrong.
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: