Ejemplo n.º 1
0
def display_antonyms(word):
    antonym = get_antonyms(word)
    window['output'].print("WORD:" + word)
    if antonym:
        window['output'].print("ANTONYMS:", antonym)
    else:
        display_error("Word is not found in corpus")
Ejemplo n.º 2
0
def display_antonyms(word):
    antonyms = get_antonyms(word)
    window['output'].print("WORD: " + word)
    if antonyms:
        window['output'].print("antonyms: ", antonyms)
    else:
        display_error("antonyms is not found in corpus")
Ejemplo n.º 3
0
def word_cloud(msg):
    print(msg)
    if len(msg['data'].split()) == 1:
        limit = 20  # Not more than `limit` antonyms and synonyms
        antonyms = get_antonyms(msg['data'], limit)
        synonyms = get_synonyms(msg['data'], limit)
        words = list(
            map(lambda x: {
                'text': x,
                'flag': 1,
                'size': randint(10, 50)
            }, synonyms))
        words.extend(
            list(map(lambda x: {
                'text': x,
                'size': randint(10, 50)
            }, antonyms)))
    else:
        words = list(
            map(
                lambda x: {
                    'text': x,
                    'flag': choice([0, 1]),
                    'size': randint(10, 50)
                }, re.findall("[a-zA-Z\d]+", msg['data'])))
    emit('input', {'words': words})
Ejemplo n.º 4
0
def display_antonym(word):
    antonym=get_antonyms(word)
    window["output"].print("WORD:",word)
    if antonym:
        window["output"].print("ANTONYM:",antonym)
    else:
        display_error("antonym is not found ")
Ejemplo n.º 5
0
def display_antonyms(word):
    antonyms = get_antonyms(word)
    window['output'].print("Word : " + word)
    if antonyms:
        window['output'].print("Antonyms: ", antonyms)
    else:
        display_error("No Antonyms Found")
Ejemplo n.º 6
0
def display_antonyms(word):
    antonyms = get_antonyms(word)
    window['output'].print("WORD: " + word)
    if antonyms:
        window['output'].print("SYNONYMS: ")
        for antonym in antonyms:
            if antonym != antonyms[-1]:
                window['output'].print(antonym, end=", ")
            else:
                window['output'].print(antonym + ".")
    else:
        display_error("Word is not found in corpus")
Ejemplo n.º 7
0
def display_antonym(word):
    antonym = ut.get_antonyms(word)
    if antonym:
        window['output'].print('ANTONYM: ', antonym)
    else:
        display_error('Antonym of this word not founnd in corpus')