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