-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathData.py
63 lines (47 loc) · 1.66 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
63
from pyrogram.types import InlineKeyboardButton
class Data:
# Start Message
START = """
Hey {}
Welcome to {}
I can generate pyrogram and telethon string session .
Use the below button and go ahead !
By @NotrealPranay
"""
# Home Button
home_buttons = [
[InlineKeyboardButton("🔥 Start Generating Session 🔥", callback_data="generate")],
[InlineKeyboardButton(text="🏠 Return Home 🏠", callback_data="home")]
]
generate_button = [
[InlineKeyboardButton("🔥 Start Generating Session 🔥", callback_data="generate")]
]
# Rest Buttons
buttons = [
[InlineKeyboardButton("🔥 Start Generating Session 🔥", callback_data="generate")],
[InlineKeyboardButton(" Give a Star ⭐", url="https://github.com/Pranay5463/String-Session-Generator_Bot")],
[
InlineKeyboardButton("How to Use ❔", callback_data="help"),
InlineKeyboardButton("🎪 About 🎪", callback_data="about")
],
[InlineKeyboardButton(" Get Help ↗️", url="https://t.me/+9SetglBX6YY0OWRh")],
]
# Help Message
HELP = """
✨ **Available Commands** ✨
/about - About The Bot
/help - To display current Message
/start - Start the Bot
/generate - Generate String Session
/cancel - Cancel the process
/restart - Cancel the process
"""
# About Message
ABOUT = """
**About This Bot**
A telegram bot to generate pyrogram and telethon string session by @NotrealPranay
Source Code : [Click Here](https://github.com/Pranay5463/String-Session-Generator_Bot)
Framework : [Pyrogram](docs.pyrogram.org)
Language : [Python](www.python.org)
Developer : @NotrealPranay
"""