[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 191 subscribers, ranking 2 048 in the Technologies & Applications category and 9 457 in the Russia region.
📊 Audience metrics and dynamics
Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 64 191 subscribers.
According to the latest data from 23 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 22 over the last 30 days and by -6 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 17.94%. Within the first 24 hours after publication, content typically collects 7.92% reactions from the total number of subscribers.
- Post reach: On average, each post receives 11 516 views. Within the first day, a publication typically gains 5 085 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 71.
- 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 24 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.
$ https://github.com/Erfaniaa/binance-futures-trading-bot.git $ Сгенерировать ключ Binance API и поместить его в credentials.py $ pip3 install -r requirements.txt $ python3 init_indicators_dict.py $ python3 init_orders_dict.py $ python3 main.py⚙️ GitHub/Инструкция #python #soft #github
$ git clone https://github.com/un1cum/Beast_Bomber $ pip install -r requirements.txtЗапуск: python beast.py ⚠️ Информация предоставлена исключительно с целью ознакомления. И побуждает обратить внимание на проблемы в безопасности. ⚙️ GitHub/Инструкция #soft #code #python #github
import os
from binance.client import Client
from datetime import datetime
import time
from openpyxl import Workbook
import telebot
#Ключи для Бинанс
api_key = ('Ваш_api_key')
api_secret = ('Ваш_api_secret')
client = Client(api_key, api_secret)
#Создаем таблицу для сбора данных
wb = Workbook()
ws = wb.active
#Расписываем названия колонок для данных
ws['A1'] = 'Average'
ws['B1'] = 'Futures'
ws['C1'] = 'Percentage'
ws['D1'] = 'Time'
#Задаём торговую пару:
ASSET = 'BTCUSDT'
def price(symbol):
try:
price = client.get_avg_price(symbol=symbol, requests_params={'timeout': 2})['price']
return float(price)
except Exception as e:
print(e)
def priceF(symbol):
try:
priceF = client.futures_symbol_ticker(symbol=symbol, requests_params={'timeout': 2})['price']
return float(priceF)
except Exception as e:
print(e)
bot = telebot.TeleBot('ваш_ключ_бота_от_BotFather')
# Ваш ID или список ID получателей
ID = 111111111
#Функция отправки сообщений
def message(text):
bot.send_message(ID, text)
def message_signal():
message(f'Сигнал по торговой паре: {ASSET}')
TIME = 1
# Процент выше которого мы начинаем получать сигналы
GROWTH_PERCENT = 0.053
while True:
#Сравниваем цену фьючерсов со средней ценой
FIRST_PRICE = price(ASSET)
PRICEF = priceF(ASSET)
PERCENT = ((PRICEF - FIRST_PRICE) / FIRST_PRICE) * 100
if PERCENT >= GROWTH_PERCENT:
#Нет необходимости получать результат в консоль, но я их обычно вывожу
message_signal()
print(ASSET)
print("LOOK")
print(PERCENT)
times = datetime.now().strftime("%H:%M:%S")
print(times)
ws.append([FIRST_PRICE, PRICEF, PERCENT, times])
wb.save("data.xlsx")
time.sleep(TIME)Поддерживать безопасность своих продуктов — одна из первостепенных задач любой современной IT-компании. В этой книге вы найдете пошаговые инструкции по тому, как спроектировать безопасную архитектуру веб-сайтов и приложений и защищать ее на всех этапах производства и реализации.Год: 2023 Автор: Янка Таня #books #security #russian
Все от установки, маршрутизации, API, отладки, до развертывания на сервере.👍 #doc #flask #python #russian
Available now! Telegram Research 2025 — the year's key insights 
