[PYTHON:TODAY]
Python скрипты, нейросети, боты, автоматизация. Всё бесплатно! Приват: https://boosty.to/pythontoday YouTube: https://clck.ru/3LfJhM Канал админа: @akagodlike Чат: @python2day_chat Сотрудничество: @web_runner Канал в РКН: https://clck.ru/3GBFVm
Show more📈 Analytical overview of Telegram channel [PYTHON:TODAY]
Channel [PYTHON:TODAY] (@python2day) in the Russian language segment is an active participant. Currently, the community unites 64 151 subscribers, ranking 2 046 in the Technologies & Applications category and 9 511 in the Russia region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 64 151 subscribers.
According to the latest data from 08 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 199 over the last 30 days and by 3 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 16.29%. Within the first 24 hours after publication, content typically collects 9.48% reactions from the total number of subscribers.
- Post reach: On average, each post receives 10 454 views. Within the first day, a publication typically gains 6 081 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 64.
- Thematic interests: Content is focused on key topics such as github, soft, install, pip, docker.
📝 Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
“Python скрипты, нейросети, боты, автоматизация. Всё бесплатно!
Приват: https://boosty.to/pythontoday
YouTube: https://clck.ru/3LfJhM
Канал админа: @akagodlike
Чат: @python2day_chat
Сотрудничество: @web_runner
Канал в РКН: https://clck.ru/3GBFVm”
Thanks to the high frequency of updates (latest data received on 09 June, 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.
from typing import Optional
def calculate_bmi(weight: float, height: float) -> Optional[float]:
"""Вычисляет индекс массы тела (ИМТ)."""
try:
bmi = weight / (height ** 2)
return round(bmi, 2)
except ZeroDivisionError:
print("❌ Рост не может быть равен нулю.")
return None
def interpret_bmi(bmi: float) -> str:
"""Интерпретирует значение ИМТ по классификации ВОЗ."""
if bmi < 18.5:
return "Недостаточный вес"
elif 18.5 <= bmi < 25:
return "Нормальный вес"
elif 25 <= bmi < 30:
return "Избыточный вес"
elif 30 <= bmi < 35:
return "Ожирение I степени"
elif 35 <= bmi < 40:
return "Ожирение II степени"
else:
return "Ожирение III степени"
def main() -> None:
print("🧮 Калькулятор Индекса Массы Тела (ИМТ)")
while True:
print("\nМеню:")
print("1. Рассчитать ИМТ")
print("2. Выйти")
choice = input("Выберите действие (1-2): ").strip()
if choice == "1":
try:
weight = float(input("Введите вес (кг): ").strip())
height = float(input("Введите рост (в метрах): ").strip())
bmi = calculate_bmi(weight, height)
if bmi is not None:
category = interpret_bmi(bmi)
print(f"\nВаш ИМТ: {bmi}")
print(f"Категория: {category}")
except ValueError:
print("❌ Пожалуйста, введите числовые значения.")
elif choice == "2":
print("До встречи! 🖖")
break
else:
print("Неверный выбор. Попробуйте снова.")
if __name__ == "__main__":
main()
💡 Минимум кода — максимум пользы.
Сохраняй себе и делись с другом, которому давно пора в зал 🙌
@python2day
#python #code #softpip install PyPDF2
😰 Python скрипт:
python
from typing import Union
from PyPDF2 import PdfReader, PdfWriter
def secure_pdf(input_path: str, password: str, output_path: Union[str, None] = None) -> str:
"""
Шифрует PDF-файл паролем и сохраняет в новый файл.
:param input_path: Путь к исходному PDF-файлу.
:param password: Пароль для шифрования PDF.
:param output_path: Путь к зашифрованному файлу. Если не указан — формируется автоматически.
:return: Путь к зашифрованному PDF-файлу.
"""
reader = PdfReader(input_path)
writer = PdfWriter()
for page in reader.pages:
writer.add_page(page)
writer.encrypt(password)
if not output_path:
output_path = f'encrypted_{input_path}'
with open(output_path, 'wb') as output_file:
writer.write(output_file)
return output_path
if __name__ == '__main__':
file = 'secret.pdf'
password = 'pythontoday'
result = secure_pdf(file, password)
print(f'✅ Зашифрованный файл создан: {result}')
Сохраняй, пригодится 👍
@python2day
#python #tipsandtricks #soft$ pip install you-get
Использование:
$ you-get "ССЫЛКА_НА_ВИДЕО"
⚙️ GitHub/Инструкция
@python2day
#python #soft #github
Available now! Telegram Research 2025 — the year's key insights 
