Esempio n. 1
0
def negate_te_form(godan):  # !
    return IAdjective.te_form(negate_plain(godan))
Esempio n. 2
0
def negate_te_form(naadj):  # !
    return IAdjective.te_form(negate(naadj))
Esempio n. 3
0
def negate_past(godan):  # !
    return stem(godan) + get_a_sound(godan) + IAdjective.past("ない")
Esempio n. 4
0
def negate_past(naadj):  # !
    return IAdjective.past(negate(naadj))
Esempio n. 5
0
def negate_conditional(naadj):
    return IAdjective.conditional(negate(naadj))
Esempio n. 6
0
def get_i_adjective_json(iadj):
    return json.dumps(IAdjective.create_dictionary(iadj), ensure_ascii=False).encode('utf8')
Esempio n. 7
0
def iadj_api(adj):
    return json.dumps(IAdjective.create_dictionary(adj), ensure_ascii=False).encode('utf8'), 200
Esempio n. 8
0
def negate_past(ichidan):  # !
    return stem(ichidan) + IAdjective.past("ない")