---
author: Pans
category: Обучение
tags:
- django
- python
- shell
title: django shell
---

Иногда может быть удобно смотреть всякое
```bash
(venv_lj) pans@pc:~/projects/learning-journal$ python manage.py shell
17 objects imported automatically (use -v 2 for details).

Python 3.12.3 (main, Jan 22 2026, 20:57:42) [GCC 13.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> from journal.models import EntryLog
>>> log = EntryLog.objects.last()
>>> print(log)
2026-03-09 07:15:57.004318+00:00 - old_title - created
>>> log = EntryLog.objects.first()
>>> print(log)
2026-03-09 08:07:47.775812+00:00 - 2222222222 - deleted
```