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