forked from subinps/Media-Search-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot.py
40 lines (32 loc) · 1.01 KB
/
bot.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
import logging
import logging.config
# Get logging configurations
logging.config.fileConfig('logging.conf')
logging.getLogger().setLevel(logging.ERROR)
from pyrogram import Client, __version__
from pyrogram.raw.all import layer
from utils import Media
from info import SESSION, API_ID, API_HASH, BOT_TOKEN
import pyromod.listen
class Bot(Client):
def __init__(self):
super().__init__(
session_name=SESSION,
api_id=API_ID,
api_hash=API_HASH,
bot_token=BOT_TOKEN,
workers=50,
plugins={"root": "plugins"},
sleep_threshold=5,
)
async def start(self):
await super().start()
await Media.ensure_indexes()
me = await self.get_me()
self.username = '@' + me.username
print(f"{me.first_name} with for Pyrogram v{__version__} (Layer {layer}) started on {me.username}.")
async def stop(self, *args):
await super().stop()
print("Bot stopped. Bye.")
app = Bot()
app.run()