示例#1
0
def input():
    result={}
    if request.method == 'POST':
        text = request.form['text']
        main = Main(text)
        result = main.get_output()
        threshold = int(request.form["threshold"])
        order = main.get_order()
        return render_template("input.html", result=result, threshold=threshold, order=order)
    else:
        return render_template("input.html", result=result)
示例#2
0
# -*- coding: utf-8 -*-
__author__ = 'nakaokataiki'

from main import Main

main = Main("foo bar hoge hoge hoge.")

print(main.get_words())

main.set_ignore_words(["bar"])

print(main.get_ignore_words())

print(main.get_original())

print(main.get_output())

print(main.get_order())