"Web oficial de Marcos Raya Delgado, AKA, el Mago del dibujo"

# Simple Example: Phonetic Features d = cmudict.dict()

def get_phonemes(name): try: return d[name.lower()][0] except KeyError: # If word not found in dictionary return []

Here is a simplistic Python example to get started:

import nltk from nltk.corpus import cmudict