From 8464c22584e4049087c0d147d3b2ac660a37ae08 Mon Sep 17 00:00:00 2001 From: Backend IM Bot Date: Wed, 19 Mar 2025 17:45:03 +0000 Subject: [PATCH] Update code in endpoints/books.get.py --- endpoints/books.get.py | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/endpoints/books.get.py b/endpoints/books.get.py index 3c27d45..065c4de 100644 --- a/endpoints/books.get.py +++ b/endpoints/books.get.py @@ -3,20 +3,22 @@ from core.database import fake_users_db router = APIRouter() -fake_books_db = { - "1": {"id": "1", "title": "The Great Gatsby", "author": "F. Scott Fitzgerald"}, - "2": {"id": "2", "title": "1984", "author": "George Orwell"}, - "3": {"id": "3", "title": "To Kill a Mockingbird", "author": "Harper Lee"} -} - @router.get("/books") async def get_books(): - """Get all books from the database""" + """Get list of demo books""" + books = [ + {"id": 1, "title": "The Great Gatsby", "author": "F. Scott Fitzgerald"}, + {"id": 2, "title": "To Kill a Mockingbird", "author": "Harper Lee"}, + {"id": 3, "title": "1984", "author": "George Orwell"}, + {"id": 4, "title": "Pride and Prejudice", "author": "Jane Austen"}, + {"id": 5, "title": "The Catcher in the Rye", "author": "J.D. Salinger"} + ] + return { "message": "Books retrieved successfully", - "data": list(fake_books_db.values()), + "data": books, "metadata": { - "total_count": len(fake_books_db), + "total_count": len(books), "source": "demo_db" } } \ No newline at end of file