|
from pyrogram.types import InlineKeyboardButton |
|
|
|
class Data: |
|
START = """ |
|
👋 **Hello {}!** |
|
|
|
**Welcome {}!** |
|
|
|
We’re glad to have you here. This bot is designed to help you generate a **String Session** easily and securely. |
|
|
|
🚨 **Important Notes**: |
|
If you don’t trust this bot: |
|
1. **Don’t read this message**. |
|
2. **Block the bot** or **delete the chat**. |
|
|
|
🤖 **How This Bot Works**: |
|
- This bot helps you generate a **String Session** for your Telegram account. |
|
- **Recommendation**: Use a secondary account to generate the String Session. This avoids delays and keeps your main account secure. |
|
""" |
|
|
|
home_buttons = [ |
|
[InlineKeyboardButton("🔥 sᴛᴀʀᴛ ɢᴇɴᴇʀᴀᴛɪɴɢ sᴇssɪᴏɴ 🔥", callback_data="generate")], |
|
[InlineKeyboardButton(text="ᴋᴇᴍʙᴀʟɪ", callback_data="home")], |
|
] |
|
|
|
generate_button = [ |
|
[InlineKeyboardButton("🔥 sᴛᴀʀᴛ ɢᴇɴᴇʀᴀᴛɪɴɢ sᴇssɪᴏɴ 🔥", callback_data="generate")] |
|
] |
|
|
|
buttons = [ |
|
[InlineKeyboardButton("🔥 sᴛᴀʀᴛ ɢᴇɴᴇʀᴀᴛɪɴɢ sᴇssɪᴏɴ 🔥", callback_data="generate")], |
|
[ |
|
InlineKeyboardButton("ᴀʙᴏᴜᴛ", callback_data="about") |
|
] |
|
] |
|
|
|
HELP = """ |
|
**Available Commands** |
|
|
|
/about - About this Bot |
|
/help - This Message |
|
/start - Start bot |
|
/generate - Start Generating Session |
|
""" |
|
|
|
ABOUT = """ |
|
**About This Bot** |
|
|
|
A telegram bot to retrieve pyrograms and telethon string session by @VegetaSessionBot |
|
|
|
Framework : [Pyrogram](docs.pyrogram.org) |
|
|
|
Language : [Python](www.python.org) |
|
|
|
Developer : @xpushz |
|
""" |