forked from TEAM-PYRO-BOTZ/PYRO-RENAME-BOT
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbot.py
46 lines (39 loc) · 1.36 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
from pyrogram import Client
from config import API_ID, API_HASH, BOT_TOKEN, FORCE_SUB, PORT, WEBHOOK
from aiohttp import web
from route import web_server
class Bot(Client):
def __init__(self):
super().__init__(
name="renamer",
api_id=API_ID,
api_hash=API_HASH,
bot_token=BOT_TOKEN,
workers=200,
plugins={"root": "plugins"},
sleep_threshold=15,
)
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:
print(e)
print("Make Sure Bot admin in force sub channel")
self.force_channel = None
if WEBHOOK:
app = web.AppRunner(await web_server())
await app.setup()
await web.TCPSite(app, "0.0.0.0", PORT).start()
print(f"{me.first_name} 𝚂𝚃𝙰𝚁𝚃𝙴𝙳 ⚡️⚡️⚡️")
async def stop(self, *args):
await super().stop()
print("Bot Stopped")
bot=Bot()
bot.run()