forked from GreyMatter658/StringSessionBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.py
62 lines (44 loc) · 1.58 KB
/
data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from pyrogram.types import InlineKeyboardButton
class Data:
generate_single_button = [InlineKeyboardButton("🔥 Start Generating Session 🔥", callback_data="generate")]
home_buttons = [
generate_single_button,
[InlineKeyboardButton(text="🏠 Return Home 🏠", callback_data="home")]
]
generate_button = [generate_single_button]
buttons = [
generate_single_button,
[InlineKeyboardButton("✨ Bot Status and More Bots ✨", url="https://t.me/+IezzVbvzlKxlODY1")],
[
InlineKeyboardButton("How to Use ❔", callback_data="help"),
InlineKeyboardButton("🎪 About 🎪", callback_data="about")
],
[InlineKeyboardButton("♥ More Amazing bots ♥", url="https://t.me/GreyMatter_Bots")],
]
START = """
Hey {}
Welcome to {}
If you don't trust this bot,
1) stop reading this message
2) delete this chat
Still reading?
You can use me to generate pyrogram (even version 2) and telethon string session. Use below buttons to learn more !
By @GreyMatter_Bots
"""
HELP = """
✨ **Available Commands** ✨
/about - About The Bot
/help - This Message
/start - Start the Bot
/generate - Generate Session
/cancel - Cancel the process
/restart - Cancel the process
"""
ABOUT = """
**About This Bot**
Telegram Bot to generate Pyrogram and Telethon string session by @GreyMatter_Bots
Source Code : [Click Here](https://github.com/GreyMatter658/StringSessionBot)
Framework : [Pyrogram](https://docs.pyrogram.org)
Language : [Python](https://www.python.org)
Developer : @StarkProgrammer
"""