-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_db.py
86 lines (69 loc) · 2.31 KB
/
admin_db.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
# -*- coding: utf-8 -*-
import sqlite3
import sys
import time
from datetime import datetime
class DB():
def __init__(self,name):
self.name = name
self.connect = sqlite3.connect(self.name)
self.cursor = self.connect.cursor()
def infoDB(self):
sql = "SELECT name FROM sqlite_master WHERE type='table'"
self.cursor.execute(sql)
rows = self.cursor.fetchall()
print("Название базы данных: " + self.name)
print("Таблицы: ")
for self.row in rows:
print(self.row[0])
def infoUserDB(self):
sql = "SELECT * FROM users"
self.cursor.execute(sql)
rows = self.cursor.fetchall()
print("Спискок пользователей: ")
i = 0
for self.row in rows:
i += 1
print(i,self.row[0], self.row[1])
def delUserDB(self,user_name):
sql = "DELETE FROM users WHERE name=?"
self.cursor.execute(sql,[user_name])
self.connect.commit()
print("Пользователь удален")
def add_dic(self, file):
file_name = open(file, 'rb')
line = file_name.readlines()
k = 0
for i in line:
k += 1
lines = i.decode('utf8')
self.cursor.execute("""INSERT INTO dictionary VALUES ('%s','%s')"""%(k,i.decode('utf8')))
self.connect.commit()
print("Изменения в базу данных внесенно")
nameDB = "MyFunnyEnglish.db"
db = DB(nameDB)
# db.count()
print(datetime.now())
print('|===========================|')
print('| Управление базой данных |')
print('|===========================|')
print('| 1.Информация по базе |')
print('| 2.Информация о users |')
print('| 3.Удаление user-a |')
print('| 4.Добавление слов |')
print('| 0.Выход |')
print('|===========================|')
num = input("Ввидите цифру: ")
num = int(num)
if num == 1:
db.infoDB()
elif num == 2:
db.infoUserDB()
elif num == 3:
user_name = input("Ввидите user-name: ")
db.delUserDB(user_name)
elif num == 4:
file_name = input("Ввидите имя файла: ")
db.add_dic("1.txt")
elif num == 0:
sys.exit()