Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial Commit #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Conversation

LaPlazesDemon
Copy link

Added search by author or publication year
Added average rating fetch

@@ -4,6 +4,7 @@ version = "0.1.0"
description = "Example repo for 04APR New To Tech session"
authors = ["Matt <[email protected]>"]
readme = "README.md"
package-mode = false
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need for this change - the problem was something else

@@ -7,6 +7,7 @@ class BookBase(BaseModel):
author: str
publication_year: Optional[int] = None
rating: Optional[int] = None
genre: str
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There are benefits to using a string versus an enum here. For a quick implementation, string is fine! I would recommend making this field optional, however.

@app.get('/info/average_rating')
async def get_average_rating():
ratings = [book.rating for book in books]
return sum(ratings) / len(ratings)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does not handle books without ratings!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants