-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.py
189 lines (159 loc) · 5.52 KB
/
project.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
import csv
from tabulate import tabulate
books = []
###### User Interface ######
def display_menu():
menu = [
['1', 'Add Book'],
['2', 'Delete Book'],
['3', 'Update Book'],
['4', 'Display Books'],
['5', 'Save and Exit'],
]
headers = ['Option', 'Description']
print(tabulate(menu, headers=headers, tablefmt='rounded_grid'))
def main():
load_books()
while True:
display_menu()
try:
choice = int(input('Your choice: '))
if choice == 1:
add_book()
elif choice == 2:
delete_book(books)
elif choice == 3:
update_book(books)
elif choice == 4:
display_books()
elif choice == 5:
save_and_exit()
else:
print('Invalid choice. Please enter a valid option.')
except ValueError:
print('Invalid input. Please enter a valid option.')
###### Books Functions ######
def add_book():
book = {}
book['ID'] = len(books) + 1
book['Title'] = input('Book Title: ')
book['Author'] = input('Book Author: ')
book['Genre'] = input('Genre: ')
book['Year'] = input('Publication Year: ')
books.append(book)
save_books_to_csv()
return 'Book added successfully!'
def delete_book(books):
display_all_books()
id = int(input('Enter the ID of the book to delete: '))
deleted_book = None
for book in books:
if book['ID'] == id:
deleted_book = book
break
if deleted_book:
books.remove(deleted_book)
recreate_ids()
save_books_to_csv()
return f'Book "{deleted_book["Title"]}" deleted successfully!'
else:
return f'Book with ID "{id}" not found.'
def update_book(books):
display_all_books()
id = int(input('Enter the ID of the book to update: '))
updated_book = None
for book in books:
if book['ID'] == id:
updated_book = book
break
if updated_book:
print(f'Updating book "{updated_book["Title"]}": ')
updated_book['Title'] = input('New Title: ')
updated_book['Author'] = input('New Author: ')
updated_book['Genre'] = input('New Genre: ')
updated_book['Year'] = input('New Publication Year: ')
save_books_to_csv()
return f'Book "{updated_book["Title"]}" updated successfully!'
else:
return f'Book with ID "{id}" not found.'
def recreate_ids():
for i, book in enumerate(books, start=1):
book['ID'] = i
###### Display Functions ######
def display_books():
while True:
display_options = [
['1', 'Show a Specific Book by Title or Author'],
['2', 'Show All Books in a Specific Genre'],
['3', 'Show All Books'],
['4', 'Back to Main Menu']
]
headers = ['Option', 'Description']
print('\nDisplay Options:')
print(tabulate(display_options, headers=headers, tablefmt='rounded_grid'))
choice = int(input('Enter your choice: '))
if choice == 1:
search_criteria = input('Enter book title or author name: ')
search_and_display_books(search_criteria)
elif choice == 2:
genre = input('Enter genre: ')
display_books_by_genre(genre)
elif choice == 3:
display_all_books()
elif choice == 4:
break
else:
print('Invalid choice. Try again!')
def search_and_display_books(criteria):
matching_books = []
for book in books:
if criteria.lower() in book['Title'].lower() or criteria.lower() in book['Author'].lower():
matching_books.append(book)
if matching_books:
display_books_table(matching_books)
else:
print('No matching books found.')
def display_books_by_genre(genre):
genre_books = [book for book in books if book.get('Genre').lower() == genre.lower()]
if genre_books:
display_books_table(genre_books)
else:
print(f'No books found in the "{genre}" genre.')
def display_all_books():
display_books_table(books)
def display_books_table(book_list):
table = []
for book in book_list:
table.append([book['ID'], book['Title'], book['Author'], book['Genre'], book['Year']])
headers = ['ID', 'Title', 'Author', 'Genre', 'Year']
print(tabulate(table, headers=headers, tablefmt='rounded_grid'))
###### File CSV ######
def save_books_to_csv():
try:
with open('books.csv', 'w', newline='', encoding='utf-8') as csv_file:
csv_writer = csv.DictWriter(csv_file, fieldnames=['ID', 'Title', 'Author', 'Genre', 'Year'])
csv_writer.writeheader()
for book in books:
csv_writer.writerow(book)
print('Books saved to the file successfully.')
except Exception as e:
print('An error occurred while saving the books:', e)
def load_books():
try:
with open('books.csv', 'r', newline='', encoding='utf-8') as csv_file:
csv_reader = csv.DictReader(csv_file)
books.clear()
for row in csv_reader:
books.append(row)
recreate_ids()
print('Books loaded from the file successfully.')
except FileNotFoundError:
print('File not found. No books loaded.')
except Exception as e:
print('An error occurred while loading the books:', e)
def save_and_exit():
save_books_to_csv()
print('Exiting the program.')
exit()
if __name__ == "__main__":
main()