forked from Aadhi000/Adv-Forward-Bot-2.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
user.py
26 lines (23 loc) · 735 Bytes
/
user.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
from config import Config
from config import LOGGER
from pyrogram import Client, __version__
import asyncio
BOT_USERNAME=Config.BOT_USERNAME
class User(Client):
def __init__(self):
super().__init__(
Config.SESSION,
api_hash=Config.API_HASH,
api_id=Config.API_ID,
workers=10
)
self.LOGGER = LOGGER
async def start(self):
await super().start()
if BOT_USERNAME:
await User.send_message(self, chat_id=BOT_USERNAME, text="/forward")
usr_bot_me = await self.get_me()
return (self, usr_bot_me.id)
async def stop(self, *args):
await super().stop()
self.LOGGER(__name__).info("Bot stopped. Bye.")