Библиотека Python разработчика | Книги по питону
Погружение в CPython и архитектуру. Разбираем неочевидное поведение (GIL, Memory), Best Practices (SOLID, DDD) и тонкости Django/FastAPI. Решаем задачи с подвохом и оптимизируем алгоритмы. 🐍 По всем вопросам @evgenycarter РКН clck.ru/3Ko7Hq
Show more📈 Analytical overview of Telegram channel Библиотека Python разработчика | Книги по питону
Channel Библиотека Python разработчика | Книги по питону (@bookpython) in the Russian language segment is an active participant. Currently, the community unites 18 313 subscribers, ranking 7 332 in the Technologies & Applications category and 36 891 in the Russia region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 18 313 subscribers.
According to the latest data from 11 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -82 over the last 30 days and by 0 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 5.51%. Within the first 24 hours after publication, content typically collects 2.69% reactions from the total number of subscribers.
- Post reach: On average, each post receives 1 009 views. Within the first day, a publication typically gains 492 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 2.
- Thematic interests: Content is focused on key topics such as numbers, yield, модуль, none, декоратор.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“Погружение в CPython и архитектуру. Разбираем неочевидное поведение (GIL, Memory), Best Practices (SOLID, DDD) и тонкости Django/FastAPI. Решаем задачи с подвохом и оптимизируем алгоритмы. 🐍
По всем вопросам @evgenycarter
РКН clck.ru/3Ko7Hq”
Thanks to the high frequency of updates (latest data received on 12 June, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.
@mydecorator(my_argument)
def my_decorated_function(input):
return input
В качестве наиболее простого примера можно рассмотреть вывод некой информации до и после ввода функции.
@mydecorator('-------------------')
def my_decorated_function(input):
return input
print(my_decorated_function('Hello, World!')
В данном случае вывод будет представлен следующим образом.
@BookPythonmkdir project_name
cd project_name
Создать виртуальную среду Python
python3 -m venv venv
Активировать виртуальную среду
source venv/bin/activate
Если нужно деактивировать виртуальную среду
deactivate
Install django (~= same as 3.1.*)
pip install django~=3.1.0
Новый проект django (из папки project_name)
django-admin startproject config .
Создать приложение (из папки project_name)
python manage.py startapp app_name
Миграция:
Django создает таблицу базы данных для каждой модели, представленной в вашем приложении, с помощью этих команд:
Создайте файл в app_name/migrations со структурой базы данных
python manage.py makemigrations
Миграция будет читать файлы миграции и создавать фактическую базу данных и таблицы.
python manage.py migrate
Создать суперпользователя для авторизации/админ панели
python manage.py createsuperuser
Запуск сервера
python manage.py runserver => ex. http://127.0.0.1:8000
Другие команды
# Django shell (Run projet code direclty)
~$ python manage.py shell
# example of code to run in the shell:
>>> from app_name.models import User
>>> user1 = User.objects.first()
# Prepare static folders for production
$ python manage.py collectstatic
# Take all data from app blog and export in json
python manage.py dumpdata blog >myapp.json
# Take all data in json file and import in app data table
python manage.py loaddata myapp.json
@BookPython
Available now! Telegram Research 2025 — the year's key insights 
