Telegram RegisterThe public register of Telegram
Telegram profile photo for Ежедневный Python

Channel

Ежедневный Python

@the_daily_python

On this record: Growth · Engagement · Reactions · Posts · Handles named that no longer answer · Cite this entry

52subscribers

-2 since we began measuring on 7 August 2026

Risers and fallers across the register · movement among entries of Under 1,000.

Register entry

Telegram ID-1002236046597
TypeChannel
Username@the_daily_python
CreatedBetween 1 June 2024 and 30 September 2024— estimated from Telegram’s id allocation, not measured. How this range is calculated.
First recorded10 August 2026
Last confirmed live29 August 2026
Measurements held3
Confirmed unchanged2 times, most recently 29 August 2026
On Telegramt.me/the_daily_python

Growth

5254537 August 2026 — 54 subscribers10 August 2026 — 54 subscribers21 August 2026 — 52 subscribers7 August 202621 August 2026
3 measurements spanning 14 days, net -2. Dots are measurements; the straight line between them is drawn to join them, not to claim we know the path taken in between — snapshots are recorded only when a count changes, so gaps mean “no change observed”, never “interpolated”. The vertical axis spans 52–54 and does not start at zero.
Measurement log — every subscribers count we have recorded
Measured (UTC)SubscribersChange
21 Aug 2026, 15:3952-2
10 Aug 2026, 09:0054no change
7 Aug 2026, 14:1454first reading

Engagement

20 posts held, back to 24 February 2025the reader has not yet reached the start of this channel’s public history, so older posts may sit further back, unread. Read across 1 pageof Telegram’s post history, 20 posts per page.

Nothing published in the last 30 days. ERR and ER are rolling 30-day measures, so there is nothing to compute — we hold 20 posts for this entry, the most recent from 13 March 2025. An engagement rate over an empty window would be a number about nothing.

Reaction mix

13 reactions across 13 posts, in 2 distinct kinds. The most used accounts for 84.6% of them.

Every reaction kind recorded on the sample, most used first
ReactionCountShareShare, drawn
👍1184.6%
🔥215.4%

No sentiment is inferred, and none should be read in. This table is ordered by count and by nothing else. Emoji do not carry stable meaning across languages or communities — 🙏 is thanks in one channel and mourning in another — so we publish which ones were pressed and how often, and pass no judgement on what an audience meant by them.

Precision. Telegram publishes reaction counts per emoji and short-forms each one — 4.34K, 1.2M — so any single kind at or above 1,000 reaches us at three significant figures, and only counts below 1,000 are exact. The shares above are ratios of those figures and carry the same error. This is also why the total here can differ slightly from a reaction total printed elsewhere on the page: both are sums of the same rounded parts, taken over samples with different edges.

Coverage. Reactions were read on 13 of the 20 sampled posts in this sample. Summed by Telegram’s own count on each post — not by adding up the per-emoji breakdown above — those same posts carry 13reactions in total: the kind of figure the paragraph above means by “a reaction total printed elsewhere on the page”.

Measured over the 20 most recent posts we hold, published 24 February 2025 to 13 March 2025, using the newest reading held for each. Telegram Stars are excluded: they are a payment, not a reaction, and they have their own section.

Recent posts

13 Mar 2025, 07:00 UTC102 views1 reactionsread 10 August 2026

RestrictedPython позволяет безопасно выполнять недоверенный код, ограничивая доступ к системным функциям и предотвращая потенциальные атаки. from RestrictedPython import compile_restricted from RestrictedPython import safe_globals import math # Подготовка безопасных глобальных переменных def get_safe_globals(): safe_env = safe_globals.copy() # Добавляем безопасные математические функции safe_env.update({

👍1

11 Mar 2025, 07:00 UTC56 views1 reactionsread 10 August 2026

Apache Avro — бинарный формат сериализации данных со схемой, обеспечивающий компактность и высокую производительность. import avro.schema from avro.datafile import DataFileReader, DataFileWriter from avro.io import DatumReader, DatumWriter import json import io # Определяем схему Avro schema_json = ''' { "namespace": "example", "type": "record", "name": "User", "fields": [ {"name": "id", "typ

👍1

10 Mar 2025, 08:00 UTC38 views1 reactionsread 10 August 2026

Uplink позволяет объявлять API-клиенты в декларативном стиле, преобразуя Python-классы и методы в HTTP-запросы. Это значительно упрощает работу с REST API. import uplink from uplink import Query, Path, Body, json import requests from typing import List, Dict, Any, Optional # Определение модели данных для типизации class Post: def __init__(self, id: int, title: str, body: str, userId: int): self.id = id

👍1

9 Mar 2025, 07:00 UTC29 views1 reactionsread 10 August 2026

PyO3 позволяет интегрировать высокопроизводительный код на Rust в ваши Python-приложения, достигая огромного прироста производительности для критичных участков. # Пример использования Rust-функции в Python import time import numpy as np from rust_module import fibonacci_rust # Подключаем Rust-модуль # Реализация на чистом Python для сравнения def fibonacci_python(n: int) -> int: if n <= 1: return n r

🔥1

7 Mar 2025, 07:00 UTC28 views1 reactionsread 10 August 2026

Memcached — легковесное, высокопроизводительное решение для кэширования данных в оперативной памяти, которое может значительно ускорить ваши приложения.import pymemcache import time import json from functools import wraps # Настройка клиента Memcached client = pymemcache.client.base.Client(('localhost', 11211)) # Сериализатор для сложных типов данных class JSONSerde: def serialize(self, key, value): if is

👍1

6 Mar 2025, 07:00 UTC25 viewsread 10 August 2026

Pytest делает тестирование Python-кода удобным и эффективным. Рассмотрим продвинутые техники для сокращения дублирования и повышения читаемости тестов. import pytest from datetime import datetime, timedelta # Функция, которую будем тестировать def is_valid_date_range(start_date, end_date, max_days=30): """Проверяет, что диапазон дат не превышает max_days и end_date > start_date""" if not isinstance(start_dat

5 Mar 2025, 07:01 UTC34 viewsread 10 August 2026

Библиотека pyjq позволяет использовать мощный язык запросов jq прямо в Python для продвинутой фильтрации и трансформации JSON-данных. import pyjq import json import requests # Получаем данные из API response = requests.get('https://jsonplaceholder.typicode.com/users') data = response.json() # Базовый запрос: извлечь имена всех пользователей names = pyjq.all('.[].name', data) print("Имена:", names[:3], "...") # Сложн

4 Mar 2025, 07:00 UTC26 viewsread 10 August 2026

Django ORM отлично работает в экосистеме Django, но иногда SQLAlchemy предлагает больше гибкости. Рассмотрим плюсы и минусы миграции, а также базовый пример перехода. # Django ORM модель from django.db import models class User(models.Model): username = models.CharField(max_length=100, unique=True) email = models.EmailField(unique=True) is_active = models.BooleanField(default=True) created_at = models.

3 Mar 2025, 07:00 UTC26 viewsread 10 August 2026

Beautiful Soup 4 позволяет эффективно парсить и извлекать данные из HTML с помощью CSS-селекторов, что значительно упрощает веб-скрапинг. import requests from bs4 import BeautifulSoup # Получаем HTML страницы url = "https://python.org/events/" response = requests.get(url) html = response.text # Создаем объект BeautifulSoup soup = BeautifulSoup(html, 'html.parser') # Использование CSS-селекторов для извлечения данных

2 Mar 2025, 14:01 UTC23 views1 reactionsread 10 August 2026

Найдите проблему в коде для многопоточной обработки больших файлов:import threading from queue import Queue import time class ChunkProcessor: def __init__(self, num_workers=4): self.queue = Queue(maxsize=10) self.results = [] self.workers = [] self.num_workers = num_workers def process_chunk(self, chunk): # Имитация обработки данных time.sleep(0.1) retu

🔥1

2 Mar 2025, 07:10 UTC30 views1 reactionsread 10 August 2026

Pydantic v2 позволяет проверять и преобразовывать данные с помощью аннотаций типов Python, обеспечивая производительность и типобезопасность. from pydantic import BaseModel, Field, EmailStr, ValidationError, field_validator from typing import List, Optional from datetime import datetime class User(BaseModel): id: int name: str = Field(..., min_length=2, max_length=50) email: EmailStr tags: List[str] =

👍1

1 Mar 2025, 08:43 UTC23 views1 reactionsread 10 August 2026

Структурное сопоставление образцов (pattern matching) позволяет элегантно обрабатывать сложные структуры данных в Python с помощью оператора match. Синтаксис базового сопоставления: match выражение: case образец_1: # действия, если выражение соответствует образцу_1 case образец_2: # действия, если выражение соответствует образцу_2 case _: # действия по умолчанию (как else) Сопоста

👍1

Showing the 12 most recent of 20 posts we hold for @the_daily_python. View and reaction counts are the latest single reading for each post, not a live figure, and a recent post is still accumulating both. A view count marked was rounded by Telegram before we ever saw it — t.me prints views in full below 1,000 and to three significant figures above, so ≈1,200,000 means somewhere between 1,150,000 and 1,249,999. Unmarked counts are exact. Text is reproduced from the public post preview and truncated for length.

Cite this entry

A live page changes as we take new readings, so a citation should name the measurement it is based on, not just the URL. The line below cites the subscriber count as measured 21 August 2026 — this entry's latest reading, not the date you are reading this.

“Ежедневный Python” (@the_daily_python), 52 subscribers as measured 21 August 2026. Telegram Register, tgregister.com/channel/the_daily_python.

Full measurement history, CC BY 4.0. Every reading this register holds for this entry, not just the latest one, as a dated, downloadable record: CSV · JSON. Free to use with attribution to tgregister.com. Each file carries its own generation timestamp, which is the figure to cite for exactly when the data was retrieved.