Skip to content

Commit

Permalink
solution
Browse files Browse the repository at this point in the history
  • Loading branch information
timovlad committed Dec 13, 2024
1 parent d0c2794 commit c3053e7
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 5 deletions.
4 changes: 2 additions & 2 deletions checklist.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Сheck Your Code Against the Following Points

### 1. Don't add this fragment:
### 1. Don"t add this fragment:
```python
if __name__ == "__main__":
main()
Expand Down Expand Up @@ -43,5 +43,5 @@ Model.objects.create(first="b")
Model.objects.create(first="c")
```

### 4. Don't forget to add migrations to your PR.
### 4. Don"t forget to add migrations to your PR.

9 changes: 9 additions & 0 deletions db/models.py
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
from django.db import models


class Genre(models.Model):
name = models.CharField(max_length=255)


class Actor(models.Model):
first_name = models.CharField(max_length=255)
last_name = models.CharField(max_length=255)
28 changes: 25 additions & 3 deletions main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,29 @@
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="Drama")
Actor.objects.create(first_name="George", last_name="Clooney")
Actor.objects.create(first_name="Keanu", last_name="Reeves")
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")

Genre.objects.filter(name="Drama").update(name="Drama")

Actor.objects.filter(first_name="George",
last_name="Clooney").update(last_name="Clooney")
Actor.objects.filter(first_name="Keanu",
last_name="Reeves").update(first_name="Keanu",
last_name="Reeves")

Genre.objects.filter(name="Action").delete()

Actor.objects.filter(first_name="Scarlett").delete()

actors = Actor.objects.filter(last_name="Smith").order_by("first_name")
return actors

0 comments on commit c3053e7

Please sign in to comment.