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