-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
96 lines (64 loc) · 2.83 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
from flask import Flask, jsonify, request, render_template, send_file
import requests
from markup import for_markup
app = Flask(__name__)
app.config['MAX_CONTENT_LENGTH'] = 5000 * 1024
ALLOWED_EXTENSIONS = {'txt'}
def allowed_file(filename):
return '.' in filename and \
filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
@app.route('/')
def home():
return render_template('main.html', hidden_state = 'hidden')
@app.route('/upload_text', methods = ['POST', 'GET'])
def upload_text():
url = 'http://host.docker.internal:7000/processing'
text = request.form['text_input']
toks = False
lemmas = False
if 'tokenization' in request.form:
toks = True
if 'lemmatisation' in request.form:
lemmas = True
json_text = {'input_text': text, 'tokenization': toks, 'lemmatisation': lemmas}
response = requests.post(url, json=json_text)
markup_text = for_markup(response.json()['output_text'])
with open('data/doc.txt', 'w', encoding = 'utf-8') as f:
f.write(response.json()['output_text'])
return render_template('main.html', hidden_state = '', markup_text = markup_text, output_text = response.json()['output_text'])
@app.route('/upload_file', methods = ['POST', 'GET'])
def upload_file():
url = 'http://host.docker.internal:7000/processing'
uploaded_file = request.files['file_input']
if not allowed_file(uploaded_file.filename):
return render_template('error.html', error = 'Вы загрузили файл не в формате txt!')
text = uploaded_file.read().decode('utf-8')
toks = False
lemmas = False
if 'tokenization' in request.form:
toks = True
if 'lemmatisation' in request.form:
lemmas = True
json_text = {'input_text': text, 'tokenization': toks, 'lemmatisation': lemmas}
response = requests.post(url, json=json_text)
try:
markup_text = for_markup(response.json()['output_text'])
except:
markup_text = response.json()['output_text']
with open('data/doc.txt', 'w', encoding = 'utf-8') as f:
f.write(response.json()['output_text'])
return render_template('main.html', hidden_state = '', markup_text = markup_text, output_text = response.json()['output_text'])
@app.errorhandler(413)
def error413(e):
return render_template('error.html', error = 'Вы пытаетесь загрузить слишком большой файл!')
@app.route('/download_file')
def download_file():
return send_file('data/doc.txt')
@app.route('/about')
def about():
return render_template('about.html')
@app.route('/api_docs')
def api_docs():
return render_template('api.html')
if __name__ == '__main__':
app.run(port=8000, host='0.0.0.0', debug=True)