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 647 subscribers, ranking 10 375 in the Technologies & Applications category and 55 267 in the Russia region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 11 647 subscribers.
According to the latest data from 05 September, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -70 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.38%. 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 626 views. Within the first day, a publication typically gains 313 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 06 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.
pip install pytest
Для начала мы импортируем pytest в файле с проверяющим кодом, называем его test_file.py и вводим в терминал pytest.
Модуль захватывает только файлы, что называются test_*.py или *_test.py, и выполняет функции, которые начинаются с test.
Если вам стало интересно, то обязательно зайдите на документацию проекта.
#миниурок #pytestpip3 install img2pdf
Работает она из терминала: img2pdf img1.png img2.jpg -o out.pdf. Или из Python, как на примере выше.
Если вам стало интересно, то советую посетить эту страницу, где рассказывается о преимуществах модуля.
#миниурок #img2pdfpoetry --version. У вас должно быть что-то такое: Poetry 0.12.0.
После этого — создаём проект poetry new poetry-demo или же, если вы не хотите переносить всё в новую папку, заходим в уже существующий проект и пишем poetry init.
Тема очень обширная, но если это то, что нужно вашему проекты, то советую начать отсюда.
#миниурок #poetrypip install textblob
Начинается всё с класса TextBlob(text), который занимается обработкой текста. Далее пойдёт речь о его атрибутах:
tags — возвращает список из тегов части речи.
words — возвращает слова, из которых состоит текст. А sentences — предложения.
Это очень полезное API для обучения ИИ. Если вам стало интересно, то обязательно посетите документацию.
#миниурок #textblob__doc__.
#теорияrandom.randint(1, 6). Удачи ;)
Примеры:
print(get_future() == random.randint(1, 6)) -> True
print(get_future() == random.randint(1, 6)) -> True
print(get_future() == random.randint(1, 6)) -> True
📌 Пишите ваше решение в комментариях. Решение будет через несколько часов на этом канале. 👇
#Задачка_с_собеседованияpip install pyshorteners
Shortener() — всё начинается с этого класса. Никаких аргументов он не принимает.
После — выбираете интересный вам сервис, который можете узнать из документации и передаём через short(link) ссылку.
Так скажем, добро пожаловать на https://clck.ru/Yfzua.
#миниурок #pyshortenerspip install gTTS
Вы можете попробовать этот модуль, введя gtts-cli 'hello' --output hello.mp3 в терминал.
Но, помимо cli, модуль доступен и в python. Просто создаёте gTTS(text), сохраняете с помощью save('filename.mp3') и получаете тот же самый результат.
#миниурок #gTTS