randydev commited on
Commit
db56623
·
verified ·
1 Parent(s): a131e09

Create Data.py

Browse files
Files changed (1) hide show
  1. Data.py +61 -0
Data.py ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from pyrogram.types import InlineKeyboardButton
2
+
3
+ class Data:
4
+ START = """
5
+ 👋 *Hello {}!*
6
+
7
+ 🌟 *Welcome {}!*
8
+
9
+ We’re glad to have you here. This bot is designed to help you generate a **String Session** easily and securely.
10
+
11
+ 🚨 *Important Notes*:
12
+ If you don’t trust this bot:
13
+ 1. **Don’t read this message**.
14
+ 2. **Block the bot** or **delete the chat**.
15
+
16
+ 🤖 *How This Bot Works*:
17
+ - This bot helps you generate a **String Session** for your Telegram account.
18
+ - **Recommendation**: Use a secondary account to generate the String Session. This avoids delays and keeps your main account secure.
19
+
20
+ 🙏 *Thank You for Using This Bot!*
21
+ For questions or support, contact @xpushz
22
+ """
23
+
24
+ home_buttons = [
25
+ [InlineKeyboardButton("🔥 sᴛᴀʀᴛ ɢᴇɴᴇʀᴀᴛɪɴɢ sᴇssɪᴏɴ 🔥", callback_data="generate")],
26
+ [InlineKeyboardButton(text="ᴋᴇᴍʙᴀʟɪ", callback_data="home")],
27
+ ]
28
+
29
+ generate_button = [
30
+ [InlineKeyboardButton("🔥 sᴛᴀʀᴛ ɢᴇɴᴇʀᴀᴛɪɴɢ sᴇssɪᴏɴ 🔥", callback_data="generate")]
31
+ ]
32
+
33
+ buttons = [
34
+ [InlineKeyboardButton("🔥 sᴛᴀʀᴛ ɢᴇɴᴇʀᴀᴛɪɴɢ sᴇssɪᴏɴ 🔥", callback_data="generate")],
35
+ [
36
+ InlineKeyboardButton("ᴀʙᴏᴜᴛ", callback_data="about")
37
+ ]
38
+ ]
39
+
40
+ HELP = """
41
+ ✨ **Available Commands** ✨
42
+
43
+ /about - About this Bot
44
+ /help - This Message
45
+ /start - Start bot
46
+ /generate - Start Generating Session
47
+ """
48
+
49
+ ABOUT = """
50
+ **About This Bot**
51
+
52
+ A telegram bot to retrieve pyrograms and telethon string session by @VegetaSessionBot
53
+
54
+ Group Support : [ɢᴀʙᴜɴɢ](https://t.me/xpushz)
55
+
56
+ Framework : [Pyrogram](docs.pyrogram.org)
57
+
58
+ Language : [Python](www.python.org)
59
+
60
+ Developer : @xpushz
61
+ """