-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathdata.py
More file actions
62 lines (44 loc) · 1.54 KB
/
data.py
File metadata and controls
62 lines (44 loc) · 1.54 KB
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/ELUpdates/8")],
[
InlineKeyboardButton("How to Use ❔", callback_data="help"),
InlineKeyboardButton("🎪 About 🎪", callback_data="about")
],
[InlineKeyboardButton("♥ More Amazing bots ♥", url="https://t.me/ELUpdates")],
]
START = """
**Hey {}
Welcome to {}
If you don't trust this bot,
> Please stop reading this message
> Delete this chat
Still reading?
You can use me to generate Pyrogram and Telethon string session. Use below buttons to learn more !
By @ELUpdates**
"""
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 @ELUpdates
Source Code : [Click Here](https://github.com/EL-Coders/SessionStringBot)
Framework : [Pyrogram](https://docs.pyrogram.org)
Language : [Python](https://www.python.org)
Developer : @CoderELAlpha
"""