forked from p46318075/CodePattern
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
415 B
19 lines
415 B
from flask import Flask, request
|
|
from cppy.cp_util import *
|
|
|
|
app = Flask(__name__)
|
|
|
|
@app.route('/word_frequency', methods=['POST'])
|
|
def word_frequency():
|
|
# 获取POST请求中的JSON数据
|
|
data = request.get_json()
|
|
data = data['file']
|
|
# 统计词频
|
|
word_freq = get_frequencies(data)
|
|
word_freq = sort_dict(word_freq)
|
|
return word_freq
|
|
|
|
if __name__ == '__main__':
|
|
app.run(debug=True)
|
|
|