forked from ShivangKakkar/StringSessionBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.py
More file actions
58 lines (41 loc) · 1.3 KB
/
Copy pathdata.py
File metadata and controls
58 lines (41 loc) · 1.3 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
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(" Coming Soon1", url="#")],
[
InlineKeyboardButton("How to Use ❔", callback_data="help"),
InlineKeyboardButton("🎪 About 🎪", callback_data="about")
],
[InlineKeyboardButton("Coming Soon2", url="#")],
]
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 !
"""
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
Framework : [Pyrogram](https://docs.pyrogram.org)
Language : [Python](https://www.python.org)
"""