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 #1102

Open
wants to merge 7 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
32 changes: 32 additions & 0 deletions db/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import init_django_orm # noqa: F401

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


def main() -> QuerySet:

genres = ["Western", "Action", "Dramma"]

actors = [
("George", "Klooney"), ("Kianu", "Reaves"), ("Scarlett", "Keegan"),
("Will", "Smith"), ("Jaden", "Smith"), ("Scarlett", "Johansson")
]

for genre in genres:
Genre.objects.create(name=genre)

for first_name, last_name in actors:
Actor.objects.create(first_name=first_name, last_name=last_name)

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()

return Actor.objects.filter(last_name="Smith").all().order_by("first_name")
44 changes: 44 additions & 0 deletions db/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Generated by Django 5.1.3 on 2024-11-26 21:19

from django.db import migrations, models


class Migration(migrations.Migration):

initial = True

dependencies = []

operations = [
migrations.CreateModel(
name="Actor",
fields=[
(
"id",
models.AutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("first_name", models.CharField(max_length=255)),
("last_name", models.CharField(max_length=255)),
],
),
migrations.CreateModel(
name="Genre",
fields=[
(
"id",
models.AutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("name", models.CharField(max_length=255)),
],
),
]
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}"
5 changes: 5 additions & 0 deletions db/settings.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
USE_TZ = False

INSTALLED_APPS = ("db",)

DEBUG = True
7 changes: 0 additions & 7 deletions main.py

This file was deleted.

20 changes: 0 additions & 20 deletions settings.py

This file was deleted.

2 changes: 1 addition & 1 deletion tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from db.models import Genre, Actor

from main import main
from db.main import main


@pytest.mark.django_db
Expand Down
Loading