コード例 #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
ファイル: nl.py プロジェクト: yelircaasi/lltk
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
ファイル: nl.py プロジェクト: yelircaasi/lltk
def plural(word):
    ''' Returns the plural version for a given noun. '''
    return scrape('plural', word)
コード例 #10
0
ファイル: nl.py プロジェクト: yelircaasi/lltk
def ipa(word):
    ''' Returns the International Phonetic Alphabet (IPA) writing for a given word. '''
    return scrape('ipa', word)
コード例 #11
0
ファイル: nl.py プロジェクト: yelircaasi/lltk
def articles(word):
    ''' Returns the articles (singular and plural) for a given noun. '''
    return scrape('articles', word)
コード例 #12
0
ファイル: nl.py プロジェクト: yelircaasi/lltk
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
ファイル: nl.py プロジェクト: yelircaasi/lltk
def miniaturize(word):
    ''' Returns the miniaturized version for a given word. '''
    return scrape('miniaturize', word)
コード例 #16
0
ファイル: en.py プロジェクト: yelircaasi/lltk
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)