forked from VJBots/Rename-Render
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbot.py
56 lines (47 loc) · 1.64 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Don't Remove Credit @VJ_Botz
# Subscribe YouTube Channel For Amazing Bot @Tech_VJ
# Ask Doubt on telegram @KingVJ01
import logging
import logging.config
from pyrogram import Client
from config import API_ID, API_HASH, BOT_TOKEN, FORCE_SUB, PORT
from aiohttp import web
from plugins.web_support import web_server
logging.config.fileConfig('logging.conf')
logging.getLogger().setLevel(logging.INFO)
logging.getLogger("pyrogram").setLevel(logging.ERROR)
class Bot(Client):
def __init__(self):
super().__init__(
name="WebX-Renamer",
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()
me = await self.get_me()
self.mention = me.mention
self.username = me.username
self.force_channel = FORCE_SUB
if FORCE_SUB:
try:
link = await self.export_chat_invite_link(FORCE_SUB)
self.invitelink = link
except Exception as e:
logging.warning(e)
logging.warning("Make Sure Bot admin in force sub channel")
self.force_channel = None
app = web.AppRunner(await web_server())
await app.setup()
bind_address = "0.0.0.0"
await web.TCPSite(app, bind_address, PORT).start()
logging.info(f"{me.first_name} ✅✅ BOT started successfully ✅✅")
async def stop(self, *args):
await super().stop()
logging.info("Bot Stopped 🙄")
bot = Bot()
bot.run()