Telegram RegisterThe public register of Telegram
Telegram profile photo for 🐍 Укус питона 🐍

Channel

🐍 Укус питона 🐍

@byteofpython

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

2,227subscribers

-2 since we began measuring on 7 August 2026

Risers and fallers across the register · movement among entries of 1,000–3,162.

Register entry

Telegram ID-1001657719003
TypeChannel
Username@byteofpython
CreatedBetween 1 December 2021 and 30 April 2023— estimated from Telegram’s id allocation, not measured. How this range is calculated.
First recorded7 August 2026
Last confirmed live16 August 2026
Measurements held4
Confirmed unchanged2 times, most recently 16 August 2026
On Telegramt.me/byteofpython

Growth

2,2272,2292,2287 August 2026 — 2,229 subscribers7 August 2026 — 2,229 subscribers10 August 2026 — 2,228 subscribers13 August 2026 — 2,227 subscribers7 August 202613 August 2026
4 measurements spanning 7 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 2,227–2,229 and does not start at zero.
Measurement log — every subscribers count we have recorded
Measured (UTC)SubscribersChange
13 Aug 2026, 18:052,227-1
10 Aug 2026, 23:432,228-1
7 Aug 2026, 06:152,229no change
7 Aug 2026, 06:052,229first reading

Engagement

20 posts held, back to 31 October 2025the reader has not yet reached the start of this channel’s public history, so older posts may sit further back, unread. Read across 2 pagesof 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 6 June 2026. An engagement rate over an empty window would be a number about nothing.

Reaction mix

14 reactions across 4 posts, in 4 distinct kinds. The most used accounts for 57.1% of them.

Every reaction kind recorded on the sample, most used first
ReactionCountShareShare, drawn
😁857.1%
👏428.6%
17.14%
🐳17.14%

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 4 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 14reactions 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 31 October 2025 to 6 June 2026, 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

18 Dec 2025, 09:30 UTC673 viewsread 7 August 2026
Photo

Массивы в pattern matching. В качестве шаблонов также могут выступать массивы. Подобным шаблоны также могут содержать либо конкретные значения, либо переменные, которые передаются элементы массивов, либо символ прочерка _, если элемент массива не важен. В данном случае функция print_people принимает массив, который, как предполагается, состоит из трех элементов, рассмотрим их в следующей части. 🐍 Укус питона // 💬

7 Nov 2025, 14:59 UTC644 viewsread 7 August 2026

👩‍💻 Динамическое создание классов — метапрограммирование в чистом виде В Python классы — это тоже объекты, и их можно создавать "на лету" с помощью функции type(). Это открывает путь к динамическому API, автоматическим моделям и DSL. ➡️ Пример: def make_model(name, **fields): return type(name, (object,), fields) User = make_model("User", name="Анна", age=25) print(User.name) # Анна admin = User() admin.role

7 Nov 2025, 06:59 UTC393 viewsread 7 August 2026

Что выведет код? x = 0 def outer(): x = 1 def inner(): nonlocal x x += 1 return x print("A", inner(), x) x = 5 print("B", inner(), x) outer() print("G", x)

7 Nov 2025, 06:59 UTC485 viewsread 7 August 2026
Poll

Ответ:

  1. A 2 1, B 6 5, G 020%
  2. A 2 2, B 5 5, G 030%
  3. A 2 2, B 6 5, G 020%
  4. A 2 2, B 6 6, G 030%

Shares as published. No per-option vote count is published by Telegram, so none is shown.

6 Nov 2025, 07:04 UTC327 viewsread 7 August 2026

👩‍💻 Контракты через аннотации — не просто подсказки типов Аннотации типов (type hints) — это не только помощь IDE. С их помощью можно внедрять контроль логики исполнения — проверять типы, значения и инварианты прямо во время работы программы. ➡️ Пример: from typing import get_type_hints def enforce_types(func): hints = get_type_hints(func) def wrapper(*args, **kwargs): for name, arg in zip(hints,

5 Nov 2025, 15:04 UTC258 viewsread 7 August 2026

👩‍💻 WeakRef — как избежать утечек памяти в Python Иногда объект больше не нужен, но на него всё ещё ссылаются другие части программы. Обычная ссылка удерживает объект в памяти, а слабая ссылка (weak reference) — нет. Она не мешает сборщику мусора удалить объект, если больше нет сильных ссылок ➡️ Пример: import weakref class Data: def __init__(self, name): self.name = name def __del__(self):

5 Nov 2025, 07:01 UTC238 viewsread 7 August 2026

Что выведет код? import itertools lst = [[1, 2], [3]] it = itertools.chain.from_iterable(lst) print(next(it)) lst.append([4, 5]) print(list(it))

5 Nov 2025, 07:01 UTC238 viewsread 7 August 2026
Poll

Ответ:

  1. 1, [2, 3]7%
  2. 1, [4, 5]14%
  3. 1, [2, 4, 5, 3]29%
  4. 1, [2, 3, 4, 5]50%

Shares as published. No per-option vote count is published by Telegram, so none is shown.

4 Nov 2025, 07:01 UTC209 viewsread 7 August 2026

👩‍💻 Протокол дескрипторов — скрытый механизм свойств и ORM В Python за @property, staticmethod, classmethod и даже ORM-поля стоит единый механизм — дескрипторы. Это объекты, которые управляют доступом к атрибутам через методы __get__, __set__, __delete__ ➡️ Пример: class LoggedAttribute: def __init__(self, name): self.name = name def __get__(self, instance, owner): value = instance.__dict

Showing the 12 most recent of 20 posts we hold for @byteofpython. 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.

Polls

The 4 polls we hold for this entry, as Telegram rendered them when we read the post. A poll’s figures keep moving after that, so each one is dated.

7 Nov 2025, 06:59 UTCAnonymous Quiz20 voters

Ответ:

  1. A 2 1, B 6 5, G 020%
  2. A 2 2, B 5 5, G 030%
  3. A 2 2, B 6 5, G 020%
  4. A 2 2, B 6 6, G 030%

Shares as published. No per-option vote count is published by Telegram, so none is shown.

5 Nov 2025, 07:01 UTCAnonymous Quiz14 voters

Ответ:

  1. 1, [2, 3]7%
  2. 1, [4, 5]14%
  3. 1, [2, 4, 5, 3]29%
  4. 1, [2, 3, 4, 5]50%

Shares as published. No per-option vote count is published by Telegram, so none is shown.

3 Nov 2025, 07:01 UTCAnonymous Quiz6 voters

Ответ:

  1. A, B False17%
  2. A, B TypeError33%
  3. A, B True33%
  4. (ничего), B True17%

Shares as published. No per-option vote count is published by Telegram, so none is shown.

31 Oct 2025, 07:02 UTCAnonymous Quiz8 voters

Ответ:

  1. timeout, True True, ok25%
  2. timeout, True False, ok50%
  3. timeout, False False, ok25%
  4. timeout, False True, ok0%

Shares as published. No per-option vote count is published by Telegram, so none is shown.

Percentages only — there are no per-option vote counts here, because Telegram publishes none.The public post preview gives each option’s share and a single voter total, and nothing else. Multiplying one by the other would produce a per-option tally that looks measured and is not: the shares are rounded to whole numbers before we ever see them. We print what was published and leave the column that does not exist empty.

The shares need not add up to 100.Rounding alone puts many polls at 99 or 101. A poll that allows more than one answer per voter runs well past 100 by design, and several here do. The bars are drawn against a fixed 100% track at each option’s own percentage rather than normalised to the total, so a poll that exceeds it shows that it does instead of being quietly rescaled.

Read from the 20 most recent posts we hold, published 31 October 2025 to 6 June 2026. Telegram labels each poll by kind — an anonymous poll, a quiz, a closed set of final results — and that label is reproduced rather than paraphrased.

Citation-graph rank

Citation-graph rank — 1,225,051 of 1,481,243entries in the measured graph. A weighted position computed from the forward and mention edges below — republished posts weigh more than named mentions — and recomputed periodically, over the whole graph. Published only as this ordinal position, never as a score: a position is a fact, and a score printed beside one channel’s name would read as a verdict this register does not make. The two counts beneath stay separate for the same reason mentions are never summed with forwards anywhere else on this page — a named-by count costs nothing to manufacture. The top 100 by this measure, or how it is computed.

Mentions

Named by 1 registered channel — every channel on the register whose own posts have named this one, by its current username or any other username it currently holds, merged from two separately captured readings of the same fact so a namer caught by only one of them is not missed and a namer both caught is not counted twice. A username this channel has since dropped is not matched — that handle may belong to someone else now, and crediting today’s namer to yesterday’s owner would misattribute it.

Named by

Channels on the register whose posts name this channel's handle.

A mention is a weaker signal than a forward and is counted separately for that reason — naming a channel is not republishing it, and a handle in a post body is easy to place deliberately. The post counts beside each row below are distinct posts in which the handle appeared, from posts we have read on both sides — the “Named by N registered channels” figure above is a different count, of distinct NAMING CHANNELS rather than posts, and is not the sum of the rows under it.

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 13 August 2026 — this entry's latest reading, not the date you are reading this.

“🐍 Укус питона 🐍” (@byteofpython), 2,227 subscribers as measured 13 August 2026. Telegram Register, tgregister.com/channel/byteofpython.

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.