-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBookStore.py
More file actions
116 lines (83 loc) · 2.98 KB
/
BookStore.py
File metadata and controls
116 lines (83 loc) · 2.98 KB
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
""""
This is a program which can be used as a database for the books. The database will store information like Book Name,Author Name,
Year and ISBN
It can View all records from a database, search an entry from a database, add an entry to the database,
update an entry to the database, delete an entry from the database.
"""
from tkinter import *
from dataBase import Database
database = Database()
# database = Database("books.db") this can also be used
def view_command():
list1.delete(0, END)
for row in database.view():
list1.insert(END, row)
def search_command():
list1.delete(0, END)
for row in database.search(title_text.get(), Author_text.get(), Year_text.get(), ISBN_text.get()):
list1.insert(END, row)
def insert_command():
database.insert(title_text.get(), Author_text.get(), Year_text.get(), ISBN_text.get())
list1.delete(0, END)
list1.insert(END, (title_text.get(), Author_text.get(), Year_text.get(), ISBN_text.get()))
def get_selected_row(event):
try:
global selected_tuple
index=list1.curselection()[0]
selected_tuple=list1.get(index)
e1.delete(0,END)
e1.insert(END,selected_tuple[1])
e2.delete(0,END)
e2.insert(END,selected_tuple[2])
e3.delete(0,END)
e3.insert(END,selected_tuple[3])
e4.delete(0,END)
e4.insert(END,selected_tuple[4])
except IndexError:
pass
def delete_command():
database.delete(selected_tuple[0])
def update_command():
database.update(selected_tuple[0],title_text.get(),Author_text.get(),Year_text.get(),ISBN_text.get())
window = Tk()
window.wm_title("Books Database")
l1 = Label(window, text="Title")
l1.grid(row=0, column=0)
l2 = Label(window, text="Author")
l2.grid(row=0, column=2)
l3 = Label(window, text="Year")
l3.grid(row=1, column=0)
l4 = Label(window, text="ISBN")
l4.grid(row=1, column=2)
title_text = StringVar()
e1 = Entry(window, textvariable=title_text)
e1.grid(row=0, column=1)
Author_text = StringVar()
e2 = Entry(window, textvariable=Author_text)
e2.grid(row=0, column=3)
Year_text = StringVar()
e3 = Entry(window, textvariable=Year_text)
e3.grid(row=1, column=1)
ISBN_text = StringVar()
e4 = Entry(window, textvariable=ISBN_text)
e4.grid(row=1, column=3)
list1 = Listbox(window, height=10, width=60)
list1.grid(row=2, column=0, rowspan=6, columnspan=2)
sb1 = Scrollbar(window)
sb1.grid(row=2, column=2, rowspan=6)
list1.configure(yscrollcommand=sb1.set)
sb1.configure(command=list1.yview)
list1.bind('<<ListboxSelect>>',get_selected_row)
b1 = Button(window, text="View all", width=12, command=view_command)
b1.grid(row=2, column=3)
b2 = Button(window, text="Search Entry", width=12, command=search_command)
b2.grid(row=3, column=3)
b3 = Button(window, text="Add Entry", width=12, command=insert_command)
b3.grid(row=4, column=3)
b4 = Button(window, text="Update", width=12,command=update_command)
b4.grid(row=5, column=3)
b5 = Button(window, text="Delete", width=12,command=delete_command)
b5.grid(row=6, column=3)
b6 = Button(window, text="Close", width=12,command=window.destroy)
b6.grid(row=7, column=3)
window.mainloop()