-
Notifications
You must be signed in to change notification settings - Fork 1k
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
solution #1107
base: master
Are you sure you want to change the base?
solution #1107
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,18 @@ | ||
from django.db import models | ||
|
||
|
||
class Genre(models.Model): | ||
|
||
name = models.CharField(max_length=255) | ||
|
||
def __str__(self) -> str: | ||
return self.name | ||
|
||
|
||
class Actor(models.Model): | ||
|
||
first_name = models.CharField(max_length=255) | ||
last_name = models.CharField(max_length=255) | ||
|
||
def __str__(self) -> str: | ||
return f"{self.first_name} {self.last_name}" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,49 @@ | ||
import init_django_orm # noqa: F401 | ||
|
||
from django.db.models import QuerySet | ||
from db.models import Genre, Actor | ||
|
||
|
||
def main() -> QuerySet: | ||
pass | ||
for genre in ["Western", "Action", "Dramma"]: | ||
Genre.objects.create( | ||
name=genre | ||
) | ||
|
||
for actor in ["George Klooney", "Kianu Reaves", | ||
"Scarlett Keegan", "Will Smith", | ||
"Jaden Smith", "Scarlett Johansson"]: | ||
Comment on lines
+13
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Consider using a list of tuples for actors, where each tuple contains the first and last name. This would eliminate the need to split the names later. |
||
first_n = actor.split()[0] | ||
last_n = actor.split()[-1] | ||
Actor.objects.create( | ||
first_name=first_n, | ||
last_name=last_n, | ||
) | ||
|
||
Genre.objects.filter( | ||
name="Dramma" | ||
).update(name="Drama") | ||
|
||
Actor.objects.filter( | ||
first_name="George", | ||
last_name="Klooney" | ||
).update(last_name="Clooney") | ||
|
||
Actor.objects.filter( | ||
first_name="Kianu", | ||
last_name="Reaves" | ||
).update(first_name="Keanu", last_name="Reeves") | ||
|
||
Genre.objects.filter( | ||
name="Action" | ||
).delete() | ||
|
||
Actor.objects.filter( | ||
first_name="Scarlett", | ||
).delete() | ||
Comment on lines
+41
to
+43
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The deletion of actors with the first name 'Scarlett' will remove both 'Scarlett Keegan' and 'Scarlett Johansson'. Ensure this is the intended behavior. |
||
|
||
list_of_actors = Actor.objects.filter( | ||
last_name="Smith", | ||
).order_by("first_name") | ||
|
||
return list_of_actors |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a typo in the genre name 'Dramma'. It should be 'Drama'. However, this is corrected later in the code, so it doesn't affect the final result.