Spaces:
Build error
Build error
File size: 1,697 Bytes
68850d0 |
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 |
# (c) Asm Safone
# A Part of MegaDL-Bot <https://github.com/AsmSafone/MegaDL-Bot>
import os
class Config:
API_ID = int(os.environ.get("API_ID", 2276460))
API_HASH = os.environ.get("API_HASH", "1ee636feaecb523f12c844416dda70e3")
BOT_TOKEN = os.environ.get("BOT_TOKEN", "5988029455:AAG7F1OJ11YH7v9HTTmhs8BayMZFaJYRkHU")
DOWNLOAD_LOCATION = "./DOWNLOADS"
TG_MAX_SIZE = 2040108421
OWNER_ID = int(os.environ.get("OWNER_ID", 1361863347))
LOG_CHANNEL = int(os.environ.get("LOG_CHANNEL",-1001874739413))
UPDATES_CHANNEL = os.environ.get("UPDATES_CHANNEL", None)
class TEXT:
ABOUT = """
π€ **Name:** {bot_name}
π **Language:** [Python](https://www.python.org)
π **Library:** [Pyrogram](https://docs.pyrogram.org)
π‘ **Instagram:** [Instagram](https://instagram.com/ims_eldrith)
π§βπ» **Developer:** [Ashiq Hussain](https://t.me/imseldrith)
π₯ **Support Group:** [Channel](https://t.me/url_upload_bots)
π’ **Updates Channel:** [BOTS](https://t.me/url_upload_bots)
"""
HELP_USER = """
This is **{bot_name}**
This Bot Can Download Files & Videos From Mega Links & Upload To Telegram. Just Send Any Mega.nz Link & See The Magic. You Can Also Add or Change Caption: Just Select An Uploaded File/ Video or Forward Me Any Telegram File & Then Write The Text You Want To Be Caption On The File As A Reply To That File & The Text You Wrote Will Be Attached As Caption π!
**Made With β€οΈ By @imseldrith! π**
"""
START_TEXT = """
ππ» **Hi** {user_mention},
I'm **{bot_name}**
I Can Download Files & Videos From Mega.nz Links & Upload To Telegram. Please Check Help To Learn More π!
**Maintained By: {bot_owner}**β€οΈ!
"""
|