-
Notifications
You must be signed in to change notification settings - Fork 0
/
python.py
223 lines (168 loc) · 8.1 KB
/
python.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
# -*- coding: utf-8 -*-
import pymysql
from flask import Flask, render_template, redirect, url_for, request
connection = pymysql.connect(host='localhost',
user='root',
password='2385',
db='mydb',
charset='utf8mb4',
cursorclass=pymysql.cursors.DictCursor)
cursor = connection.cursor()
app = Flask(__name__)
@app.route("/", methods=('GET', 'POST'))
def index():
return render_template('index.html')
@app.route("/CreateDB", methods=('GET', 'POST'))
def create_db():
if request.method == 'GET':
return render_template('input_data.html', text='Придумайте название базы данных')
if request.method == 'POST':
name = request.form['name']
create_db_query = "CREATE DATABASE " + name
try:
cursor.execute(create_db_query)
print("База данных была успешно созданна")
except Exception as e:
print(e)
connection.close()
return redirect(url_for('index'))
@app.route("/DeleteDB", methods=('GET', 'POST'))
def delete_db():
if request.method == 'GET':
return render_template('input_data.html', text='Напишите название базы данных, которую хотите удалить')
if request.method == 'POST':
name = request.form['name']
drop_db_query = "DROP DATABASE " + name
try:
cursor.execute(drop_db_query)
print("База данных была успешно удаленна")
except Exception as e:
print(e)
connection.close()
return redirect(url_for('index'))
@app.route("/CreateTB", methods=('GET', 'POST'))
def create_tb():
if request.method == 'GET':
return render_template('input_data3.html',
text1='Напишите название таблицы ',
text2='Напишите название нашей новой колонки ',
text3='Напишите тип данных Например VARCHAR (20) ')
if request.method == 'POST':
# print("Напишите название таблицы")
name = request.form['name']
# print("Напишите название нашей новой колонки")
name_col = request.form['name_col']
# print("Напишите тип данных Например VARCHAR (20)")
int_col = request.form['int_col']
create_table_query = "CREATE TABLE " + name + "(" + name_col + " " + int_col + ")"
try:
cursor.execute(create_table_query)
print("Таблица была успешно созданно")
except Exception as e:
print(e)
connection.close()
return redirect(url_for('index'))
@app.route("/DeleteTB", methods=('GET', 'POST'))
def delete_tb():
if request.method == 'GET':
return render_template('input_data.html', text='Напишите название таблицы которую хотите удалить')
if request.method == 'POST':
# print("Напишите название таблицы которую хотите удалить")
name = request.form['name']
drop_table_query = "DROP TABLE " + name
try:
cursor.execute(drop_table_query)
print("Таблица была успешно удаленна")
except Exception as e:
print(e)
connection.close()
return redirect(url_for('index'))
@app.route("/ChangeTB", methods=('GET', 'POST'))
def change_tb():
return render_template('input_change.html')
@app.route("/ChangeTB/Edit", methods=('GET', 'POST'))
def edit_tb():
if request.method == 'GET':
return render_template('input_data3.html',
text1='Напишите название таблицы в которую вы хотите внести изменения ',
text2='Напишите название колонки куда вы хотите сделать запись ',
text3='Сделайте запись в колонку ')
if request.method == 'POST':
# print("Напишите название таблицы в которую вы хотите внести изменения")
name = request.form['name']
# print("Напишите название колонки куда вы хотите сделать запись")
name_col = request.form['name_col']
# print("Сделайте запись в колонку")
int_col = request.form['int_col']
change_col_query = "INSERT INTO " + name + " (" "`" + name_col + "`" ") VALUES('" + int_col + "');"
try:
cursor.execute(change_col_query)
print("Таблица была успешно изменена")
print(change_col_query)
except Exception as e:
print(e)
connection.close()
return redirect(url_for("index"))
@app.route("/ChangeTB/Add", methods=('GET', 'POST'))
def add_col():
if request.method == 'GET':
return render_template('input_data3.html',
text1='Напишите название таблицы ',
text2='Напишите название нашей новой колонки ',
text3='Напишите тип данных. Например VARCHAR(20) ')
if request.method == 'POST':
# print("Напишите название таблицы")
name = request.form['name']
# print("Напишите название нашей новой колонки")
name_col = request.form['name_col']
# print("Напишите тип данных. Например VARCHAR(20)")
int_col = request.form['int_col']
add_col_query = "ALTER TABLE " + name + " ADD COLUMN " + name_col + " " + int_col
try:
cursor.execute(add_col_query)
print("Колонка успешно добавлена")
except Exception as e:
print(e)
connection.close()
return redirect(url_for("index"))
@app.route("/SelectTB", methods=('GET', 'POST'))
def select_tb():
return render_template('input_select.html')
@app.route("/SelectTB/Select_all", methods=('GET', 'POST'))
def select_all():
if request.method == 'GET':
return render_template('input_data.html', text='Напишите название таблицы')
if request.method == 'POST':
# print("Напишите название таблицы")
name = request.form['name']
import_table_query = "SELECT * FROM " + name
try:
cursor.execute(import_table_query)
# print("Данные успешно импортированны")
except Exception as e:
print(e)
connection.close()
data = cursor.fetchall()
return render_template('data.html', data=data)
# for row in cursor.fetchall():
# print(row)
# return redirect(url_for("index"))
@app.route("/SelectTB/count", methods=('GET', 'POST'))
def count():
if request.method == 'GET':
return render_template('input_data.html', text='Напишите название таблицы')
if request.method == 'POST':
# print("Напишите название таблицы")
name = request.form['name']
import_table_query = "SELECT COUNT(*) FROM " + name
try:
cursor.execute(import_table_query)
print("Данные успешно импортированны")
except Exception as e:
print(e)
connection.close()
data = cursor.fetchall()
return render_template('data1.html', data=data)
# return redirect(url_for("index"))
if __name__ == "__main__":
app.run(host='0.0.0.0', port=4567)