Smart Dev
Stay updated with our Telegram bot developments, discover new GitHub repositories, and get the best Python scripts. Join Smart Dev for smart coding solutions! This Channel Part Of @PremiumNetworkPlus
Ko'proq ko'rsatish📈 Telegram kanali Smart Dev analitikasi
Smart Dev (@itssmartdev) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 10 006 obunachidan iborat bo'lib, Texnologiyalar & Aralashmalar toifasida 12 225-o'rinni va Hindiston mintaqasida 40 575-o'rinni egallagan.
📊 Auditoriya ko‘rsatkichlari va dinamika
невідомо sanasidan buyon loyiha tez o‘sib, 10 006 obunachiga ega bo‘ldi.
20 Iyun, 2026 dagi oxirgi ma’lumotlarga ko‘ra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni 944 ga, so‘nggi 24 soatda esa 16 ga o‘zgardi va umumiy qamrov yuqori darajada qolmoqda.
- Tasdiqlash holati: Tasdiqlanmagan
- Jalb etish (ER): Auditoriya o‘rtacha 11.91% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 5.89% ini tashkil etuvchi reaksiyalarni to‘playdi.
- Post qamrovi: Har bir post o‘rtacha 1 191 marta ko‘riladi; birinchi sutkada odatda 589 ta ko‘rish yig‘iladi.
- Reaksiyalar va o‘zaro ta’sir: Auditoriya faol: har bir postga o‘rtacha 8 ta reaksiya keladi.
- Tematik yo‘nalishlar: Kontent util, selection, api, canva, deadline kabi asosiy mavzularga jamlangan.
📝 Tavsif va kontent siyosati
Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida ta’riflaydi:
“Stay updated with our Telegram bot developments, discover new GitHub repositories, and get the best Python scripts. Join Smart Dev for smart coding solutions!
This Channel Part Of @PremiumNetworkPlus”
Yuqori yangilanish chastotasi (oxirgi ma’lumot 21 Iyun, 2026 da olingan) sababli kanal doimo dolzarb va katta qamrovli bo‘lib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Texnologiyalar & Aralashmalar toifasidagi muhim ta’sir nuqtasiga aylantirishini ko‘rsatadi.
https://t.me/itsSmartDev/1366For Aiogram :
https://t.me/itsSmartDev/1368For Kurigram [ Pyrogram Fork ] :
https://t.me/itsSmartDev/1385
from pyrogram import Client, filters
from pyrogram.types import InlineKeyboardMarkup, InlineKeyboardButton, CallbackQuery
from pyrogram.enums import ButtonStyle
API_ID = 'YOUR_API_ID'
API_HASH = 'YOUR_API_HASH'
BOT_TOKEN = 'YOUR_BOT_TOKEN'
app = Client("my_bot", api_id=API_ID, api_hash=API_HASH, bot_token=BOT_TOKEN)
@app.on_message(filters.command("start"))
async def start(client, message):
keyboard = InlineKeyboardMarkup([
[InlineKeyboardButton(
text="Primary Button",
callback_data="primary_btn",
icon_custom_emoji_id=5258096772776991776,
style=ButtonStyle.PRIMARY # Dark Blue
)],
[InlineKeyboardButton(
text="Success Button",
callback_data="success_btn",
icon_custom_emoji_id=5258503720928288433,
style=ButtonStyle.SUCCESS # Green
)],
[InlineKeyboardButton(
text="Danger Button",
callback_data="danger_btn",
icon_custom_emoji_id=5258331647358540449,
style=ButtonStyle.DANGER # Red
)]
])
await message.reply(
"Choose a button color! 🎨\n\n"
"🔵 Primary - Dark Blue Button\n"
"🟢 Success - Green Button\n"
"🔴 Danger - Red Button",
reply_markup=keyboard
)
@app.on_callback_query()
async def handle_buttons(client, callback_query: CallbackQuery):
messages = {
"primary_btn": "✅ You clicked Primary (Dark Blue) button!",
"success_btn": "✅ You clicked Success (Green) button!",
"danger_btn": "✅ You clicked Danger (Red) button!"
}
await callback_query.answer(
messages.get(callback_query.data),
show_alert=True
)
print("Bot started! 🚀")
app.run()pip3 install --upgrade kurigram/help + your question:
• /help How to download Instagram videos?
• /help How to translate a image ?
• /help What downloaders are available?
Get instant answers with examples! ⚡️
Try it now: /help what can this bot do?import asyncio
from aiogram import Bot, Dispatcher
from aiogram.types import Message, InlineKeyboardMarkup, InlineKeyboardButton, CallbackQuery
from aiogram.filters import Command
TOKEN = 'XXXXXXXXXXXXX'
bot = Bot(token=TOKEN)
dp = Dispatcher()
@dp.message(Command("start"))
async def send_welcome(message: Message):
keyboard = InlineKeyboardMarkup(
inline_keyboard=[
[InlineKeyboardButton(
text="Primary Button",
callback_data="primary_btn",
icon_custom_emoji_id="5258096772776991776",
style="primary"
)],
[InlineKeyboardButton(
text="Success Button",
callback_data="success_btn",
icon_custom_emoji_id="5258503720928288433",
style="success"
)],
[InlineKeyboardButton(
text="Danger Button",
callback_data="danger_btn",
icon_custom_emoji_id="5258331647358540449",
style="danger"
)]
]
)
await message.answer(
"Hello! Welcome to Color Button Demo 🎨\n\n"
"🔵 Primary - Blue Button\n"
"🟢 Success - Green Button\n"
"🔴 Danger - Red Button",
reply_markup=keyboard
)
@dp.callback_query()
async def handle_buttons(callback: CallbackQuery):
messages = {
"primary_btn": "✅ You clicked Primary (Blue) button!",
"success_btn": "✅ You clicked Success (Green) button!",
"danger_btn": "✅ You clicked Danger (Red) button!"
}
await callback.answer(messages.get(callback.data), show_alert=True)
async def main():
print("Bot started! 🚀")
await dp.start_polling(bot)
if __name__ == "__main__":
asyncio.run(main())pip3 install --upgrade aiogramimport random
import asyncio
from telethon import TelegramClient, events, types, functions
API_ID = 'xxxxx'
API_HASH = 'xxxxx'
TOKEN = 'xxxxxxxxxxxx'
client = TelegramClient('bot', API_ID, API_HASH).start(bot_token=TOKEN)
@client.on(events.NewMessage(pattern='/start'))
async def start(event):
text = (
"Hello! Welcome to Color Button Demo 🎨\n\n"
"🔵 Primary - Blue Button\n"
"🟢 Success - Green Button\n"
"🔴 Danger - Red Button"
)
primary_style = types.KeyboardButtonStyle(
bg_primary=True,
icon=5258096772776991776
)
success_style = types.KeyboardButtonStyle(
bg_success=True,
icon=5258503720928288433
)
danger_style = types.KeyboardButtonStyle(
bg_danger=True,
icon=5258331647358540449
)
button1 = types.KeyboardButtonCallback(
text="Primary Button",
data=b"primary_btn",
style=primary_style
)
button2 = types.KeyboardButtonCallback(
text="Success Button",
data=b"success_btn",
style=success_style
)
button3 = types.KeyboardButtonCallback(
text="Danger Button",
data=b"danger_btn",
style=danger_style
)
markup = types.ReplyInlineMarkup(rows=[
types.KeyboardButtonRow(buttons=[button1]),
types.KeyboardButtonRow(buttons=[button2]),
types.KeyboardButtonRow(buttons=[button3])
])
await client(functions.messages.SendMessageRequest(
peer=event.chat_id,
message=text,
random_id=random.getrandbits(63),
reply_markup=markup
))
@client.on(events.CallbackQuery())
async def callback(event):
messages = {
b"primary_btn": "✅ You clicked Primary (Blue) button!",
b"success_btn": "✅ You clicked Success (Green) button!",
b"danger_btn": "✅ You clicked Danger (Red) button!"
}
await event.answer(messages.get(event.data), alert=True)
print("Bot started! 🚀")
print("Note: Make sure you're using Telethon from master branch!")
client.run_until_disconnected()pip3 uninstall telethon
pip3 install git+https://github.com/LonamiWebs/Telethon.git
Bot Requirements:
Bot owner must have Telegram Premium subscription
Endi mavjud! Telegram Tadqiqoti 2025 — yilning asosiy insaytlari 
