Telegram Bot to Bulk Downloading list of yt-dlp supported urls and Upload to Telegram.
- send command
/link
and then send urls, separated by new line. - send txt file (links), separated by new line.
Environments
API_HASH
: Get this from my.telegram.org
APP_ID
: Get this from my.telegram.org
BOT_TOKEN
: Get this from @BotFather on Telegram.
AS_ZIP
: Set this to true
if you want the bot to upload the files as zipfile. Default to false
BUTTONS
: Set this to true
if you want the bot to ignore AS_ZIP
and send a button instead. Default to false
Docker
Install Docker
/bin/bash -c "$(curl -fsSL https://git.io/JDGfm)"
Refresh User State
sudo su -l $USER
Running Docker Server
docker run -d -e API_HASH=abc -e APP_ID=123 -e BOT_TOKEN="123:abc" -e OWNER_ID=12345678 -e AS_ZIP=false -e BUTTONS=true xgorn/bulkloader:latest
- Dan Tès for his Pyrogram Library
- GPLv3