How do you get a specific record from a table?
Use get() when there is a unique record.
from myapp.models import Task task = Task.objects.get(id=123) print(task.title)