Spaces:
Sleeping
Sleeping
File size: 876 Bytes
9ff40ac |
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 |
import asyncio
# uvloop is optional, but it's recommended to install it for better performance of pyrogram
try:
import uvloop
except:
print("uvloop is not installed")
from pyrogram import Client
from config import API_ID, API_HASH, BOT_TOKEN
from utils import keep_alive
if __name__ == '__main__':
# If you are deploying on Replit, you can use this code to keep your bot alive
if 'y' in input('Are you deploying on Replit? (y/n): ').lower():
from config import REPL_URL
keep_alive.awake(REPL_URL, False)
# Setting up uvloop
try:
uvloop.install()
except:
print("Could not apply uvloop on project")
# Defining path to plugins
plugins = dict(root="plugins")
# Defining the pyrogram client's instance
Client("UploadBot",
api_id=API_ID,
api_hash=API_HASH,
bot_token=BOT_TOKEN,
plugins=plugins).run()
|