from pyrogram.types import InlineKeyboardButton class Data: # Start Message START = """ Hello {} Welcome {} If you don't trust this bot, 1) don't read this message 2) Block bots or delete chats This Bot Works To Help You Get String Session Via Bot. Recommendations If You Want to Take a String, Use Another Account, So There's No Delay. Thank you By @rencprx """ # Home Button home_buttons = [ [InlineKeyboardButton("🔥 sᴛᴀʀᴛ ɢᴇɴᴇʀᴀᴛɪɴɢ sᴇssɪᴏɴ 🔥", callback_data="generate")], [InlineKeyboardButton("sᴛʀɪɴɢ ᴠɪᴀ ʀᴇᴘʟɪᴛ", url="https://replit.com/@Randi356/Vegeta-String?v=1")], [ InlineKeyboardButton(text="ᴋᴇᴍʙᴀʟɪ", callback_data="home") ], ] generate_button = [ [InlineKeyboardButton("🔥 sᴛᴀʀᴛ ɢᴇɴᴇʀᴀᴛɪɴɢ sᴇssɪᴏɴ 🔥", callback_data="generate")] ] # Reset Buttons buttons = [ [InlineKeyboardButton("🔥 sᴛᴀʀᴛ ɢᴇɴᴇʀᴀᴛɪɴɢ sᴇssɪᴏɴ 🔥", callback_data="generate")], [ InlineKeyboardButton("ᴀʙᴏᴜᴛ", callback_data="about") ], [ InlineKeyboardButton("sᴛʀɪɴɢ ᴠɪᴀ ʀᴇᴘʟɪᴛ", url="https://replit.com/@Randi356/Vegeta-String?v=1") ], ] # Help Message HELP = """ ✨ **Available Commands** ✨ /about - About this Bot /help - This Message /start - Start bot /generate - Start Generating Session """ # About Message ABOUT = """ **About This Bot** A telegram bot to retrieve pyrograms and telethon string session by @VegetaSessionBot Group Support : [ɢᴀʙᴜɴɢ](https://t.me/rencprx) Framework : [Pyrogram](docs.pyrogram.org) Language : [Python](www.python.org) Developer : @rencprx """