Exemple #1
0
Fichier : de.py Projet : lltk/lltk
def gender(word):
	''' Returns the gender for a given word. '''
	return scrape('gender', word)
Exemple #2
0
Fichier : de.py Projet : lltk/lltk
def comparative(word):
	''' Returns the comparative for a given adjective. '''
	return scrape('comparative', word)
Exemple #3
0
Fichier : de.py Projet : lltk/lltk
def plural(word):
	''' Returns the plural version for a given noun. '''
	return scrape('plural', word)
Exemple #4
0
Fichier : de.py Projet : lltk/lltk
def ipa(word):
	''' Returns the International Phonetic Alphabet (IPA) writing for a given word. '''
	return scrape('ipa', word)
Exemple #5
0
Fichier : de.py Projet : lltk/lltk
def pos(word):
	''' Returns a list of possible POS-tags (part-of-speech) for a given word. '''
	return scrape('pos', word)
Exemple #6
0
Fichier : de.py Projet : lltk/lltk
def articles(word):
	''' Returns the articles (singular and plural) for a given noun. '''
	return scrape('articles', word)
Exemple #7
0
def gender(word):
    ''' Returns the gender for a given word. '''
    return scrape('gender', word)
Exemple #8
0
def comparative(word):
    ''' Returns the comparative for a given adjective. '''
    return scrape('comparative', word)
Exemple #9
0
def plural(word):
    ''' Returns the plural version for a given noun. '''
    return scrape('plural', word)
Exemple #10
0
def ipa(word):
    ''' Returns the International Phonetic Alphabet (IPA) writing for a given word. '''
    return scrape('ipa', word)
Exemple #11
0
def articles(word):
    ''' Returns the articles (singular and plural) for a given noun. '''
    return scrape('articles', word)
Exemple #12
0
def pos(word):
    ''' Returns a list of possible POS-tags (part-of-speech) for a given word. '''
    return scrape('pos', word)
Exemple #13
0
def superlative(word):
    ''' Returns the superlative for a given adjective. '''
    return scrape('superlative', word)
Exemple #14
0
Fichier : de.py Projet : lltk/lltk
def superlative(word):
	''' Returns the superlative for a given adjective. '''
	return scrape('superlative', word)
Exemple #15
0
def miniaturize(word):
    ''' Returns the miniaturized version for a given word. '''
    return scrape('miniaturize', word)
Exemple #16
0
def conjugate(word, tense = 'present'):
	''' Returns the conjugation of a given verb. '''
	return scrape('conjugate', word, tense)
Exemple #17
0
Fichier : nl.py Projet : lltk/lltk
def miniaturize(word):
	''' Returns the miniaturized version for a given word. '''
	return scrape('miniaturize', word)