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