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

Open
wants to merge 2 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
47 changes: 47 additions & 0 deletions app/managers.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import sqlite3

from app.models import Actor


class ActorManager:
def __init__(self) -> None:
self._connection: sqlite3.Connection = sqlite3.connect("cinema.db")
self.table_name: str = "actors"

with self._connection:
self._connection.execute(
f"CREATE TABLE {self.table_name}"
"(id INTEGER PRIMARY KEY AUTOINCREMENT,"
"first_name VARCHAR(15) NOT NULL,"
"last_name VARCHAR(15) NOT NULL);"
)

def create(self, first_name: str, last_name: str) -> None:
with self._connection:
self._connection.execute(
f"INSERT INTO {self.table_name} (first_name, last_name)"
"VALUES (?, ?);",
(first_name, last_name),
)

def all(self) -> list[Actor]:
actor_cursor: sqlite3.Cursor = self._connection.execute(
"SELECT * "
f"FROM {self.table_name};"
)
return [Actor(*row) for row in actor_cursor]

def update(self, id: int, first_name: str, last_name: str) -> None:
with self._connection:
self._connection.execute(
f"UPDATE {self.table_name} "
"SET first_name = ?, last_name = ? "
"WHERE id = ?;",
(first_name, last_name, id),
)

def delete(self, id: int) -> None:
with self._connection:
self._connection.execute(
f"DELETE FROM {self.table_name} WHERE id = ?;", (id,)
)
8 changes: 8 additions & 0 deletions app/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from dataclasses import dataclass


@dataclass
class Actor:
id: int
first_name: str
last_name: str
Loading