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