/Forwarder

Simple telegram bot to forward message form channel/gorup

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

Telegram Forwarder

A simple Telegram Python bot running on Python3 to automatically forward messages from one chat to another.

Migration from V1

v2 uses a different configuration file format. Please refer to the Configuration section for more information. The bot will not start if the configuration file is not in the correct format.

Starting The Bot

Once you've setup your your configuration (see below) is complete, simply run:

python -m forwarder

or with poetry (recommended)

poetry run forwarder

Setting Up The Bot (Read the instruction bellow before starting the bot!):

Telegram Forwarder only supports Python 3.9 and higher.

Configuration

There are two files mandatory for the bot to work .env and chat_list.json.

.env

Template env may be found in sample.env. Rename it to .env and fill in the values:

  • BOT_TOKEN - Telegram bot token. You can get it from @BotFather

  • OWNER_ID - An integer of consisting of your owner ID.

  • REMOVE_TAG - set to True if you want to remove the tag ("Forwarded from xxxxx") from the forwarded message.

chat_list.json

Template chat_list may be found in chat_list.sample.json. Rename it to chat_list.json.

This file contains the list of chats to forward messages from and to. The bot expect it to be an Array of objects with the following structure:

[
    {
        "source": -10012345678,
        "destination": [-10011111111, -10022222222]
    }
]
  • source - The chat ID of the chat to forward messages from. It can be a group or a channel.
  • destination - An array of chat IDs to forward messages to. It can be a group or a channel.

You may add as many objects as you want. The bot will forward messages from all the chats in the source field to all the chats in the destination field. Duplicates are allowed as it already handled by the bot.

Python dependencies

Install the necessary python dependencies by moving to the project directory and running:

poetry install --only main

or with pip

pip3 install -r requirements.txt

This will install all necessary python packages.

Launch in Docker container

Requrements

  • Docker
  • docker-compose

Before launch make sure all configuration are completed (.env and chat_list.json)!

Then, simply run the command:

docker-compose up -d

You can view the logs by the command:

docker-compose logs -f

Credits