from telegram import ForceReply, Update from telegram.ext import Application, CommandHandler, ContextTypes, MessageHandler, filters, ConversationHandler class Extension: cmds = ["/start"] def __init__(self, core) -> None: pass async def __call__(self, update: Update, context: ContextTypes.DEFAULT_TYPE): if update.message.text and update.message.text.split()[0] in self.cmds: return await self.handler(update, context) async def handler(self, update: Update, context: ContextTypes.DEFAULT_TYPE): return await update.message.reply_text(""" πŸ“² ΠŸΡ€ΠΈΠ²Π΅Ρ‚! Π—Π΄Π΅ΡΡŒ Ρ‚Ρ‹ моТСшь ΠΏΠΎΠ΄Π΅Π»ΠΈΡ‚ΡŒΡΡ с Π°Π΄ΠΌΠΈΠ½ΠΎΠΌ Π²Π°ΠΆΠ½ΠΎΠΉ ΠΈΠ»ΠΈ Π½Π΅ ΠΎΡ‡Π΅Π½ΡŒ ΠΈΠ½Ρ„ΠΎΠΉ (Ρ„ΠΎΡ‚ΠΎ, Π²ΠΈΠ΄Π΅ΠΎ ΠΈ просто сплСтни). πŸ’° А Π΅Ρ‰Π΅ здСсь ΠΌΠΎΠΆΠ½ΠΎ Π΄ΠΎΠ³ΠΎΠ²ΠΎΡ€ΠΈΡ‚ΡŒΡΡ ΠΎ Ρ€Π΅ΠΊΠ»Π°ΠΌΠ΅, Ρ‡Ρ‚ΠΎΠ±Ρ‹ Π°Π΄ΠΌΠΈΠ½ ΠΏΠΎΠ΅Π» Π² Ρ‚Π°ΠΊΠΈΡ… ΠΏΠΈΡ€ΠΎΠ³Π°Ρ…. Π­Ρ‚ΠΎΡ‚ Π±ΠΎΡ‚ Π±Ρ‹Π» создан с ΠΏΠΎΠΌΠΎΡ‰ΡŒΡŽ kremlin.ru """)