forked from CyniteOfficial/MdiskSearchBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigs.py
More file actions
55 lines (34 loc) Β· 1.42 KB
/
configs.py
File metadata and controls
55 lines (34 loc) Β· 1.42 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
# (c) @RoyalKrrishna
import os
class Config(object):
API_ID = int(os.environ.get("API_ID", 12345))
API_HASH = os.environ.get("API_HASH", "")
BOT_TOKEN = os.environ.get("BOT_TOKEN", "")
BOT_SESSION_NAME = os.environ.get("BOT_SESSION_NAME", "MdiskSearchBot")
USER_SESSION_STRING = os.environ.get("USER_SESSION_STRING", "")
CHANNEL_ID = int(os.environ.get("CHANNEL_ID", -100))
BOT_USERNAME = os.environ.get("BOT_USERNAME")
BOT_OWNER = int(os.environ.get("BOT_OWNER"))
UPDATES_CHANNEL = os.environ.get("UPDATES_CHANNEL", None)
ABOUT_BOT_TEXT = """<b>This is Mdisk Search Bot.
π€ My Name: <a href='https://t.me/cyniteofficial'>Mdisk Search Robot</a>
π Language : <a href='https://www.python.org'> Python V3</a>
π Library: <a href='https://docs.pyrogram.org'> Pyrogram</a>
π‘ Server: <a href='https://heroku.com'>Heroku</a>
π¨βπ» Created By: <a href='https://t.me/cyniteofficial'>Cynite</a></b>
"""
ABOUT_HELP_TEXT = """<b>π¨βπ» Developer : <a href='https://t.me/cyniteofficial'>Click Me</a>
If You Want Your Own Bot Like This Then You Can Contact Our Developer.</b>
"""
HOME_TEXT = """
<b>Hey! {}π
,
I'm Mdisk Search Robot.π€</a>
I Can Search π What You Wantβ
<a>Made With β€ By @Cyniteofficial</a></b>
"""
START_MSG = """
<b>Hey! {}π
,
I'm Mdisk Search Robot.π€</a>
I Can Search π What You Wantβ
<a>Made With β€ By @Cyniteofficial</a></b>
"""