Skip to content

Latest commit

 

History

History
executable file
·
58 lines (44 loc) · 1.84 KB

README.md

File metadata and controls

executable file
·
58 lines (44 loc) · 1.84 KB

A Telegram bot to send messages and medias to the subscribers directly through bot.

  • Authorized users of the bot can send messages (Texts or Media) within the bot.
  • Those who have started the bot, will receive the above posts.
  • Authorized users can get the subscriber count also.

Deploy to Heroku:

Variables:

  • API_HASH Your API Hash from my.telegram.org
  • API_ID Your API ID from my.telegram.org
  • BOT_TOKEN Your bot token from @BotFather
  • AUTH_USERS Create a list of User Ids to use this bot
  • DB_URI Create a postgre database if you deploy the locally | In heroku do nothing
  • SUPPORT_CHAT Public group / channel username of the support chat

@BotFather Commands

send - send posts to the subscribers (Admin Only)
subscribers - view subscribers count (Admin Only)

Deploy Locally:

Create a config.py with the above variables (Refer sample_config.py)

git clone https://github.com/m4mallu/broadcast-bot
cd broadcast-bot
virtualenv -p python3 venv
. ./venv/bin/activate
pip3 install -r requirements.txt
python3 bot.py

For deploy locally : How to create a database URI | Refer Clonebot's help, to create a database.

GPL3