File size: 15,726 Bytes
84d3b50 | 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 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 | import gradio as gr
import pandas as pd
from datetime import datetime, date
from supabase import create_client, Client
class LibraryManagement:
def __init__(self):
"""Initialize Supabase connection for library management"""
self.url = "https://bnjblzcqaumctpehgoid.supabase.co"
self.key = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImJuamJsemNxYXVtY3RwZWhnb2lkIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTgyOTA0OTQsImV4cCI6MjA3Mzg2NjQ5NH0.L4wPzuBj9dlSKpYxO1eDX-57KcP0mbNfN8stmTB-STM"
try:
self.supabase: Client = create_client(self.url, self.key)
self.connection_status = "β
Connected to Library Database!"
except Exception as e:
self.supabase = None
self.connection_status = f"β Connection failed: {str(e)}"
def get_all_members(self):
"""Get all library members"""
try:
result = self.supabase.table("member").select("*").order("name").execute()
return pd.DataFrame(result.data)
except Exception as e:
return pd.DataFrame([{"Error": str(e)}])
def get_all_books(self):
"""Get all books"""
try:
result = self.supabase.table("book").select("*").order("title").execute()
return pd.DataFrame(result.data)
except Exception as e:
return pd.DataFrame([{"Error": str(e)}])
def get_current_borrows(self):
"""Get all current (unreturned) book borrows with member and book details"""
try:
# Note: Supabase doesn't support complex JOINs in the Python client directly
# We'll get the data separately and merge it
# Get active borrows
borrows = self.supabase.table("borrow").select("*").is_("return_date", "null").execute()
if not borrows.data:
return pd.DataFrame([{"Message": "No current borrows"}])
# Get members and books to join the data
members = self.supabase.table("member").select("*").execute()
books = self.supabase.table("book").select("*").execute()
# Create lookup dictionaries
member_dict = {m['id']: m for m in members.data}
book_dict = {b['id']: b for b in books.data}
# Build the result
result_data = []
for borrow in borrows.data:
member = member_dict.get(borrow['member_id'], {})
book = book_dict.get(borrow['book_id'], {})
result_data.append({
'borrow_id': borrow['id'],
'member_name': member.get('name', 'Unknown'),
'member_email': member.get('email', 'Unknown'),
'book_title': book.get('title', 'Unknown'),
'book_author': book.get('author', 'Unknown'),
'borrow_date': borrow['borrow_date']
})
return pd.DataFrame(result_data)
except Exception as e:
return pd.DataFrame([{"Error": str(e)}])
def add_member(self, name: str, email: str):
"""Add a new member"""
try:
if not name or not email:
return "β Name and email are required"
data = {"name": name, "email": email}
result = self.supabase.table("member").insert(data).execute()
if result.data:
return f"β
Successfully added member: {name}"
else:
return "β Failed to add member"
except Exception as e:
if "duplicate key" in str(e):
return "β Email already exists"
return f"β Error: {str(e)}"
def add_book(self, title: str, author: str, year: int):
"""Add a new book"""
try:
if not title or not author:
return "β Title and author are required"
if year < 0 or year > datetime.now().year + 1:
return "β Invalid year"
data = {"title": title, "author": author, "year": year}
result = self.supabase.table("book").insert(data).execute()
if result.data:
return f"β
Successfully added book: {title}"
else:
return "β Failed to add book"
except Exception as e:
return f"β Error: {str(e)}"
def borrow_book(self, member_id: int, book_id: int):
"""Create a new borrow record"""
try:
if not member_id or not book_id:
return "β Please select both member and book"
# Check if book is already borrowed
existing = self.supabase.table("borrow").select("*").eq("book_id", book_id).is_("return_date", "null").execute()
if existing.data:
return "β Book is already borrowed and not returned"
data = {
"member_id": member_id,
"book_id": book_id,
"borrow_date": date.today().isoformat()
}
result = self.supabase.table("borrow").insert(data).execute()
if result.data:
return f"β
Book borrowed successfully!"
else:
return "β Failed to create borrow record"
except Exception as e:
return f"β Error: {str(e)}"
def return_book(self, borrow_id: int):
"""Return a borrowed book"""
try:
if not borrow_id:
return "β Please select a borrow record"
# Update the borrow record with return date
data = {"return_date": date.today().isoformat()}
result = self.supabase.table("borrow").update(data).eq("id", borrow_id).execute()
if result.data:
return f"β
Book returned successfully!"
else:
return "β Failed to return book"
except Exception as e:
return f"β Error: {str(e)}"
def get_member_choices(self):
"""Get member choices for dropdown"""
try:
result = self.supabase.table("member").select("id, name").order("name").execute()
return [(f"{m['name']} (ID: {m['id']})", m['id']) for m in result.data]
except:
return [("No members found", 0)]
def get_book_choices(self):
"""Get book choices for dropdown"""
try:
result = self.supabase.table("book").select("id, title, author").order("title").execute()
return [(f"{b['title']} by {b['author']} (ID: {b['id']})", b['id']) for b in result.data]
except:
return [("No books found", 0)]
def get_borrow_choices(self):
"""Get active borrow choices for dropdown"""
try:
# Get active borrows with member and book info
borrows = self.supabase.table("borrow").select("*").is_("return_date", "null").execute()
if not borrows.data:
return [("No active borrows", 0)]
# Get members and books for display
members = self.supabase.table("member").select("*").execute()
books = self.supabase.table("book").select("*").execute()
member_dict = {m['id']: m for m in members.data}
book_dict = {b['id']: b for b in books.data}
choices = []
for borrow in borrows.data:
member = member_dict.get(borrow['member_id'], {})
book = book_dict.get(borrow['book_id'], {})
label = f"{member.get('name', 'Unknown')} - {book.get('title', 'Unknown')} (Borrow ID: {borrow['id']})"
choices.append((label, borrow['id']))
return choices
except:
return [("Error loading borrows", 0)]
# Initialize the library management system
library = LibraryManagement()
# Gradio interface functions
def refresh_members():
return library.get_all_members()
def refresh_books():
return library.get_all_books()
def refresh_borrows():
return library.get_current_borrows()
def add_new_member(name, email):
status = library.add_member(name, email)
return status, library.get_all_members()
def add_new_book(title, author, year):
status = library.add_book(title, author, year)
return status, library.get_all_books()
def create_borrow(member_choice, book_choice):
member_id = member_choice if isinstance(member_choice, int) else 0
book_id = book_choice if isinstance(book_choice, int) else 0
status = library.borrow_book(member_id, book_id)
return status, library.get_current_borrows()
def process_return(borrow_choice):
borrow_id = borrow_choice if isinstance(borrow_choice, int) else 0
status = library.return_book(borrow_id)
return status, library.get_current_borrows()
def refresh_member_dropdown():
return gr.Dropdown(choices=library.get_member_choices())
def refresh_book_dropdown():
return gr.Dropdown(choices=library.get_book_choices())
def refresh_borrow_dropdown():
return gr.Dropdown(choices=library.get_borrow_choices())
# Create the Gradio interface
with gr.Blocks(title="Library Management System", theme=gr.themes.Soft()) as app:
gr.Markdown("# π Library Management System")
gr.Markdown("Manage your library members, books, and borrowing records")
# Connection status
with gr.Row():
gr.Markdown(f"**Status:** {library.connection_status}")
with gr.Tabs():
# Members Tab
with gr.Tab("π₯ Members"):
gr.Markdown("### Library Members")
with gr.Row():
refresh_members_btn = gr.Button("π Refresh Members", size="sm")
members_table = gr.Dataframe(label="All Members", value=library.get_all_members())
gr.Markdown("---")
gr.Markdown("**Add New Member:**")
with gr.Row():
member_name = gr.Textbox(label="Name", placeholder="Enter member name")
member_email = gr.Textbox(label="Email", placeholder="Enter email address")
add_member_btn = gr.Button("β Add Member", variant="primary")
member_status = gr.Textbox(label="Status", interactive=False)
refresh_members_btn.click(refresh_members, outputs=members_table)
add_member_btn.click(
add_new_member,
inputs=[member_name, member_email],
outputs=[member_status, members_table]
)
# Books Tab
with gr.Tab("π Books"):
gr.Markdown("### Library Books")
with gr.Row():
refresh_books_btn = gr.Button("π Refresh Books", size="sm")
books_table = gr.Dataframe(label="All Books", value=library.get_all_books())
gr.Markdown("---")
gr.Markdown("**Add New Book:**")
with gr.Row():
book_title = gr.Textbox(label="Title", placeholder="Enter book title")
book_author = gr.Textbox(label="Author", placeholder="Enter author name")
book_year = gr.Number(label="Year", value=2024, minimum=1900, maximum=2030)
add_book_btn = gr.Button("β Add Book", variant="primary")
book_status = gr.Textbox(label="Status", interactive=False)
refresh_books_btn.click(refresh_books, outputs=books_table)
add_book_btn.click(
add_new_book,
inputs=[book_title, book_author, book_year],
outputs=[book_status, books_table]
)
# Borrowing Tab
with gr.Tab("π Borrowing"):
gr.Markdown("### Current Borrows")
with gr.Row():
refresh_borrows_btn = gr.Button("π Refresh Borrows", size="sm")
borrows_table = gr.Dataframe(label="Current Borrows", value=library.get_current_borrows())
gr.Markdown("---")
gr.Markdown("**Borrow a Book:**")
with gr.Row():
member_dropdown = gr.Dropdown(
choices=library.get_member_choices(),
label="Select Member"
)
book_dropdown = gr.Dropdown(
choices=library.get_book_choices(),
label="Select Book"
)
refresh_dropdowns_btn = gr.Button("π", size="sm")
borrow_btn = gr.Button("π Borrow Book", variant="primary")
borrow_status = gr.Textbox(label="Borrow Status", interactive=False)
gr.Markdown("---")
gr.Markdown("**Return a Book:**")
with gr.Row():
borrow_dropdown = gr.Dropdown(
choices=library.get_borrow_choices(),
label="Select Borrow Record to Return"
)
refresh_return_btn = gr.Button("π", size="sm")
return_btn = gr.Button("β©οΈ Return Book", variant="secondary")
return_status = gr.Textbox(label="Return Status", interactive=False)
# Event handlers
refresh_borrows_btn.click(refresh_borrows, outputs=borrows_table)
refresh_dropdowns_btn.click(
lambda: [gr.Dropdown(choices=library.get_member_choices()),
gr.Dropdown(choices=library.get_book_choices())],
outputs=[member_dropdown, book_dropdown]
)
refresh_return_btn.click(
lambda: gr.Dropdown(choices=library.get_borrow_choices()),
outputs=borrow_dropdown
)
borrow_btn.click(
create_borrow,
inputs=[member_dropdown, book_dropdown],
outputs=[borrow_status, borrows_table]
)
return_btn.click(
process_return,
inputs=[borrow_dropdown],
outputs=[return_status, borrows_table]
)
# Reports Tab
with gr.Tab("π Reports"):
gr.Markdown("### Library Reports")
with gr.Row():
gr.Markdown("""
**Available Data:**
- Members: View and manage library members
- Books: Browse the book collection
- Current Borrows: See who has borrowed what
- Add/Return: Manage borrowing transactions
**Database Tables:**
- `member`: Library members with contact info
- `book`: Book catalog with title, author, year
- `borrow`: Borrowing records with dates
""")
gr.Markdown("---")
gr.Markdown("π‘ **Your Library Database is Ready!** Use the tabs above to manage members, books, and borrowing.")
# Launch the app
if __name__ == "__main__":
app.launch(
server_name="0.0.0.0",
server_port=7860,
share=False
)
|