Python Community
Python Community RU - СНГ сообщество Python-разработчиков Чат канала: @python_community_chat Сотрудничество: @cyberJohnny и @Sergey_bzd РКН реестр: https://knd.gov.ru/license?id=67847dd98e552d6b54a511ed®istryType=bloggersPermission
Show more📈 Analytical overview of Telegram channel Python Community
Channel Python Community (@python_community_ru) in the Russian language segment is an active participant. Currently, the community unites 11 643 subscribers, ranking 10 360 in the Technologies & Applications category and 55 198 in the Russia region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 11 643 subscribers.
According to the latest data from 06 September, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -68 over the last 30 days and by 1 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 5.34%. Within the first 24 hours after publication, content typically collects 2.63% reactions from the total number of subscribers.
- Post reach: On average, each post receives 622 views. Within the first day, a publication typically gains 306 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 3.
- Thematic interests: Content is focused on key topics such as docker, git, github, контейнер, await.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“Python Community RU - СНГ сообщество Python-разработчиков
Чат канала: @python_community_chat
Сотрудничество: @cyberJohnny и @Sergey_bzd
РКН реестр:
https://knd.gov.ru/license?id=67847dd98e552d6b54a511ed®istryType=bloggersPermission”
Thanks to the high frequency of updates (latest data received on 07 September, 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.
@cache @property. И, поскольку это свойство, используется только в классах.
Если вы пользуетесь версией старее python 3.9, то воспользуйтесь декоратором lru_cache.
Если вам стало интересно, посетите документацию.
#миниурок #cachepip install marshmallow
Schema, fields — самое важное, что вам надо знать. Schema — базовый класс для всех схем с данными. Он состоит из полей, которые создаются с помощью fields.
После вызываем у схемы dump и load, методы, позволяющие переводить строку в объект и обратно.
Это, конечно, ещё не всё. Подробнее о модуле можете вы почитать тут.
#миниурок #marshmallowname = type.
Особые типы создаются при помощи NewType, на вход он принимает название и тип, который хранит.
Обобщения хранят в себе объекты, тип которых сразу неизвестен. Создавать собственные дженерики можно с помощью Generic и TypeVar.
Это — ещё не все. Подробнее вы, как обычно, можете почитать в документации.
#теория