Telegram RegisterThe public register of Telegram

Channel

Python lover💡

@pythonym

On this record: Growth · Engagement · What this channel posts · Reactions · Posts · Citations · Cite this entry

13subscribers

+0 since we began measuring on 10 August 2026

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

Register entry

Telegram ID-1001663985360
TypeChannel
Username@pythonym
DescriptionTech-learning blog & useful hints & information🦜 Blog (in Uzb): @Blog_by_MK May join also: t.me/+a6hT6EsT6OFkNzFi Tg: @M_Kenjayev
CreatedBetween 1 December 2021 and 31 March 2023— estimated from Telegram’s id allocation, not measured. How this range is calculated.
First recorded12 August 2026
Last confirmed live12 August 2026
Measurements held2
On Telegramt.me/pythonym

Growth

1310 August 2026 — 13 subscribers12 August 2026 — 13 subscribers10 August 202612 August 2026
2 measurements spanning 2 days. 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 12–14 and does not start at zero.
Measurement log — every subscribers count we have recorded
Measured (UTC)SubscribersChange
12 Aug 2026, 04:0213no change
10 Aug 2026, 14:4613first reading

Engagement

20 posts held, back to 18 March 2024the 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 9 April 2026. An engagement rate over an empty window would be a number about nothing.

What this channel posts

Photos
13
Videos
1
Links
51

Lifetime counters from Telegram’s own channel header, read 12 August 2026 — not the date at the top of this page, which is when the subscriber count was last read. Below Telegram’s rounding threshold, so these counts are exact.

Reaction mix

3 reactions across 2 posts, in 1 kind.

Every reaction kind recorded on the sample, most used first
ReactionCountShareShare, drawn
👍3100.0%

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 2 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 3reactions 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 18 March 2024 to 9 April 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

9 Apr 2026, 07:42 UTC48 viewsread 12 August 2026
Photo

Q: What stuff will done using show_facets = admin.ShowFacets.ALWAYS in admin.py in Django? A: You can see how many objects are there based on FILTER section on django admin as in the image above.

9 Apr 2026, 06:31 UTC46 viewsread 12 August 2026

Installing Nano on CMD - Windows: winget install -e --id okibcn.nano - - - Q: On VSCode's powershell terminal venv activates automatically. where to see which environment is activated? A: gci env:VIRTUAL_ENV Enter this command to see where your activated environment is.

3 Oct 2025, 06:32 UTC118 viewsread 12 August 2026

The isinstance(instance, type) function is the preferred way to check a value against a type because it is aware of subtypes. It can also check against many possible types. For example: if isinstance(items, (list, tuple)): maxval = max(items) - - - For most times dunder methods work under the hood: a = [1, 2, 3, 4, 5, 6] len(a) # a.__len__() x = a[2] # x = a.__getitem__(2) a[1] = 7 # a.__setitem__(1,7) del a[

30 Sept 2025, 14:06 UTC96 viewsread 12 August 2026

#note #python_core Wildcard unpacking: s = [ (1, 2), (3, 4, 5), (6, 7, 8, 9) ] for x, y, *extra in s: statements # x = 1, y = 2, extra = [] # x = 3, y = 4, extra = [5] # x = 6, y = 7, extra = [8, 9] # ... Additionally, the examples below are legal too: for *first, x, y in s: ... for x, *middle, y in s: ... - - - In f-strings, we can use conversion flags

17 Sept 2025, 02:16 UTC66 viewsread 12 August 2026

#note #python_core Key values can be any immutable object, such as strings, numbers, and tuples. When using a tuple as the key, you can omit the parentheses and write comma-separated values like this: d = { } d[1,2,3] = "foo" d[1,0,3] = "bar" print(d) {(1, 2, 3): 'foo', (1, 0, 3): 'bar'} d[1,2,3] = "foo" is same as d[(1,2,3)] = "foo" - - - Walrus use-case: def toint(x): try: return int(x) except ValueError: return N

15 Sept 2025, 13:01 UTC36 viewsread 12 August 2026

#note #python_core Mutable Sequence Operations Operation || Description s[i] = x || Index assignment s[i:j] = r || Slice assignment s[i:j:stride] = r || Extended slice assignment del s[i] || Deletes an element del s[i:j] || Deletes a slice del s[i:j:stride] || Deletes an extended slice # Examples: a = [1, 2, 3, 4, 5] a[1] = 6 # a = [1, 6, 3, 4, 5] a[2:4] = [10, 11] # a = [1, 6, 10, 11, 5] a[3:4] = [-1, -2, -3] # a

14 Sept 2025, 09:14 UTC30 viewsread 12 August 2026

#note #python_core from fractions import Fraction >>> a = Fraction(2, 3) >>> b = 5 >>> a + b >>> Fraction(17, 3) # output Where, Fraction means "/". Explanation: 5/1 + 2/3 = 17/3 => Fraction(17, 3) - - - ## (x**y) % mod ≈ pow(x, y, mod) Ex.: x, y, mod = 2, 3, 5 #1. 2**3 % 5 = 8 # memory-inefficient #2. pow(2, 3, 5) # 8 is an output AND memory-econom The 2nd way can be handy for the situations when memory ef

12 Sept 2025, 12:11 UTC22 viewsread 12 August 2026

#note #python #reading #newknowledge x: int = 8 print(type(x)) # < class 'int' > Explicitly assigning the type to the variable. (!) This, however, does not mean that it is impossible to assign other types, such as string or list. Ex.: x: int = 'hey' print(type(x)) # < class 'str' > (c) Python - Distilled by David Beazley

12 Sept 2025, 12:00 UTC21 viewsread 12 August 2026
Photo

#note #server_related #deployment Key differences between VPS and VDS server. (c) ChatGPT

23 Oct 2024, 07:46 UTC257 viewsread 12 August 2026

System Design: The complete course Mavzular Chapter I » IP OSI Model TCP and UDP Domain Name System (DNS) Load Balancing Clustering Caching Content Delivery Network (CDN) Proxy Availability Scalability Storage Chapter II Databases and DBMS SQL databases NoSQL databases SQL vs NoSQL databases Database Replication Indexes Normalization and De

6 Oct 2024, 08:53 UTC160 viewsread 12 August 2026

#Docker Installation guide for Kali Linux: 1. https://youtu.be/exyXqfOD7MQ?feature=shared 2. https://www.kali.org/docs/containers/installing-docker-on-kali/

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

Mentions

Names

Channels on the register whose handles appear in this channel's posts.

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

“Python lover💡” (@pythonym), 13 subscribers as measured 12 August 2026. Telegram Register, tgregister.com/channel/pythonym.

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.