Skip to content

Commit

Permalink
Solution_genres_and_actors
Browse files Browse the repository at this point in the history
  • Loading branch information
nsdNite committed Oct 22, 2023
1 parent d0c2794 commit 6f93c07
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 1 deletion.
29 changes: 29 additions & 0 deletions db/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Generated by Django 4.0.2 on 2023-10-22 20:05

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)),
],
),
]
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)
36 changes: 35 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,40 @@

from django.db.models import QuerySet

from db.models import Actor, Genre


def main() -> QuerySet:
pass
genre_tuple = (
"Western",
"Action",
"Dramma",
)
actors_tuple = (
"George Klooney",
"Kianu Reaves",
"Scarlett Keegan",
"Will Smith",
"Jaden Smith",
"Scarlett Johansson",
)

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

for actor in actors_tuple:
first_name, last_name = actor.split(" ")
Actor.objects.create(
first_name=first_name,
last_name=last_name
)

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

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

0 comments on commit 6f93c07

Please sign in to comment.