-
-
Notifications
You must be signed in to change notification settings - Fork 959
/
bot.py
46 lines (36 loc) · 1.16 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
import os
import logging
from pyrogram.raw.all import layer
from pyrogram import Client, idle, __version__
from config import Config
logging.basicConfig(
level=logging.DEBUG, format="%(asctime)s - %(name)s - %(levelname)s - %(message)s"
)
logger = logging.getLogger(__name__)
logging.getLogger("pyrogram").setLevel(logging.WARNING)
if not os.path.isdir(Config.DOWNLOAD_LOCATION):
os.makedirs(Config.DOWNLOAD_LOCATION)
if not Config.BOT_TOKEN:
logger.error("Please set BOT_TOKEN in config.py or as env var")
quit(1)
if not Config.API_ID:
logger.error("Please set API_ID in config.py or as env var")
quit(1)
if not Config.API_HASH:
logger.error("Please set API_HASH in config.py or as env var")
quit(1)
bot = Client(
"All-Url-Uploader",
api_id=Config.API_ID,
api_hash=Config.API_HASH,
bot_token=Config.BOT_TOKEN,
workers=50,
plugins=dict(root="plugins"),
)
bot.start()
logger.info("Bot has started.")
logger.info("**Bot Started**\n\n**Pyrogram Version:** %s \n**Layer:** %s", __version__, layer)
logger.info("Developed by github.com/kalanakt Sponsored by www.netronk.com")
idle()
bot.stop()
logger.info("Bot Stopped ;)")