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

Solution #1128

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions db/models.py
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
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}"
21 changes: 19 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
import init_django_orm # noqa: F401

from db.models import Genre, Actor
from django.db.models import QuerySet


def main() -> QuerySet:
pass
Genre.objects.create(name="Western")
Genre.objects.create(name="Action")
Genre.objects.create(name="Dramma")
Actor.objects.create(first_name="George", last_name="Klooney")
Actor.objects.create(first_name="Kianu", last_name="Reaves")
Actor.objects.create(first_name="Scarlett", last_name="Keegan")
Actor.objects.create(first_name="Will", last_name="Smith")
Actor.objects.create(first_name="Jaden", last_name="Smith")
Actor.objects.create(first_name="Scarlett", last_name="Johansson")
Comment on lines +7 to +15

Choose a reason for hiding this comment

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

Consider using a list of tuples to create Genre and Actor objects in a loop, as suggested in the checklist. This will make the code more concise and easier to maintain.

Genre.objects.filter(name="Dramma").update(name="Drama")
Actor.objects.filter(last_name="Klooney").update(last_name="Clooney")
Actor.objects.filter(first_name="Kianu").update(first_name="Keanu",
last_name="Reeves")
Genre.objects.filter(name="Action").delete()
Actor.objects.filter(first_name="Scarlett").delete()
smith_actors = Actor.objects.filter(
last_name="Smith").order_by("first_name")
return smith_actors
1 change: 1 addition & 0 deletions manage.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#!/usr/bin/env python
import os
import sys
import django


if __name__ == "__main__":
Expand Down
Loading