-
Notifications
You must be signed in to change notification settings - Fork 0
/
project2.py
80 lines (72 loc) · 2.49 KB
/
project2.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
from flask import Flask
from flask import request
from flask import render_template
import os
import json
app = Flask(__name__)
@app.route('/')
def index():
return render_template('main.html')
@app.route('/res')
def res():
if os.path.exists('anketa.csv'):
f = open('anketa.csv', 'a', encoding='utf8')
else:
f = open('anketa.csv', 'w', encoding='utf8')
for i in range(1, 15):
s = 'answer' + str(i)
a = request.args[s]
f.write(a+'\t')
f.write('\n')
f.close()
return '<html><body><h1>Спасибо!</h1></body></html>'
@app.route('/stats')
def stats():
if os.path.exists('anketa.csv'):
f = open('anketa.csv', 'r', encoding='utf8')
text = f.read().split('\n')
f.close()
for i in range(len(text)):
text[i] = text[i].split('\t')
return render_template('answers.html', text=text)
else:
return '<html><body><h1>Извините, ответов на анкету ещё нет.</h1></body></html>'
@app.route('/json')
def js():
if os.path.exists('anketa.csv'):
f = open('anketa.csv', 'r', encoding='utf8')
text = f.read().split('\n')
f.close()
for i in range(len(text)):
text[i] = text[i].split('\t')
json_str = json.dumps(text)
return '<html><body>{}</body></html>'.format(json_str)
else:
return '<html><body><h1>Извините, ответов на анкету ещё нет.</h1></body></html>'
@app.route('/search')
def search():
return render_template('poisk.html')
@app.route('/results')
def results():
if os.path.exists('anketa.csv'):
f = open('anketa.csv', 'r', encoding='utf8')
text = f.read().split('\n')
f.close()
for i in range(len(text)):
text[i] = text[i].split('\t')
s = ''
try:
w = request.args['word']
for i in text:
for j in i:
if w in j:
s = s + j +'<br>'
except:
n = int(request.args['answer'])
for i in range(len(text)-1):
s = s + text[i][n-1] + '<br>'
return '<html><body><h1>Результаты поиска:</h1><p>{}</p></body></html>'.format(s)
else:
return '<html><body><h1>Извините, ответов на анкету ещё нет.</h1></body></html>'
if __name__ == '__main__':
app.run(debug=True)