-
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
Merge pull request #117 from mate-academy/add-checkphrases #520
base: master
Are you sure you want to change the base?
Changes from 3 commits
a947ac6
a405377
0f4e866
f9e3160
51db281
e5a4c7b
648e18b
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Generated by Django 4.0.2 on 2023-09-30 12:39 | ||
|
||
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)), | ||
], | ||
), | ||
] |
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) |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -1,7 +1,56 @@ | ||||||
import init_django_orm # noqa: F401 | ||||||
|
||||||
from django.db.models import QuerySet | ||||||
from db.models import Genre, Actor | ||||||
|
||||||
|
||||||
def main() -> QuerySet: | ||||||
pass | ||||||
genre_list = ["Western", "Action", "Dramma"] | ||||||
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.
Suggested change
|
||||||
for objec_list in genre_list: | ||||||
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. objec_list??? 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. use more readable name |
||||||
Genre.objects.create( | ||||||
name=objec_list, | ||||||
) | ||||||
actor_list = [ | ||||||
["George", "Klooney"], | ||||||
["Kianu", "Reaves"], | ||||||
["Scarlett", "Keegan"], | ||||||
["Will", "Smith"], | ||||||
["Jaden", "Smith"], | ||||||
["Scarlett", "Johansson"] | ||||||
] | ||||||
for objec1_list in actor_list: | ||||||
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 same |
||||||
Actor.objects.create( | ||||||
first_name=objec1_list[0], | ||||||
last_name=objec1_list[1], | ||||||
) | ||||||
Genre.objects.filter( | ||||||
name="Action", | ||||||
).delete() | ||||||
Genre.objects.filter( | ||||||
name="Dramma", | ||||||
).update(name="Drama") | ||||||
Actor.objects.filter( | ||||||
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() | ||||||
results = Actor.objects.filter( | ||||||
last_name="Smith", | ||||||
).order_by("first_name") | ||||||
print(results) | ||||||
return results | ||||||
|
||||||
|
||||||
if __name__ == "__main__": | ||||||
main() |
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.
change ' to ", use Black