A Python bridge to forward messages from any Telegram channel to your Discord server, because why not? It is highly customizable and allows you to configure various settings, such as forwarding messages with specific hashtags, mentioning roles or users in Discord, and more.
- Relocate messages from a multitude of Telegram channels
- Shove forwarded messages into a designated Discord channel
- It deals with Media and URL previews on your behalf (photos, videos, documents) from Telegram to Discord
- The forwarding is configurable based on allowed or excluded hashtags, keeping irrelevant content away
- It handles connectivity and APIs outages for you, reconnecting automatically and forwarding the messages that were missed
- It is customizable mention settings, including mentioning roles or users in Discord when forwarding messages
- It maintains the history, storing a map of the forwarded messages, allowing you to track correspondence between Telegram and Discord, making possible replies.
- It supports OpenAI's API to generate suggestions and sentiment analyses based on the text you're forwarding.
- It can run as a daemon and handle any shutdown gracefully, including
SIGTERMandSIGINTsignals. It will also save the state of the bridge, so you can resume from where you left off - You can enable logging to the file system, which will handle the rotation for you.
- You can enable the management API to control the bridge remotely, including the ability to log in to Telegram via MFA.
- You can enable the anti-spam feature to prevent the bridge from forwarding the same message multiple times, or let an AI model flag suspicious messages.
flowchart LR
TG[Telegram] -->|messages| BRIDGE
BRIDGE -->|forwards| DC[Discord]
BRIDGE --> API[Management API]
API --> CFG[Config]
The bridge listens to Telegram channels and relays content to Discord. A management API exposes runtime controls and interacts with the configuration layer.
First, you need to clone this repository:
git clone https://github.com/hyp3rd/telegram-discord-bridge.git
cd telegram-discord-bridgeNext, follow the instructions here (don't worry, they won't bite):
- Install Python 3.10 or higher and set up a virtual environment;
- Install the dependencies:
pip install -r requirements.txt - Set up a Telegram Application and obtain the API creds.
- Set up a Discord bridge with the necessary permissions to read and write the messages, and obtain the bridge token.
Now craft a new config.yml file in the root directory, starting from the config-example.yml file.
Keep in mind that in the example below the angular brackets are indicating a placeholder <>, remove them.
---
# Basic application configuration
application:
name: "hyp3rbridg3"
version: "1.0.0"
description: "A Python bridge to forward messages from those pesky Telegram channels to a shiny Discord channel, because why not?"
# Whether to enable debug mode, it will increase the verbosity of the logs and the exceptions will be raised instead of being logged
debug: True
# healthcheck interval in seconds
healthcheck_interval: 10
# The time in seconds to wait before forwarding each missed message
recoverer_delay: 60
# Enable the anti-spam feature
anti_spam_enabled: True
# The time in seconds to wait before forwarding a message with the same content
anti_spam_similarity_timeframe: 60
# Anti spam similarity threshold (set 0 to 1, with 1 being identical)
anti_spam_similarity_threshold: 0.8
# Anti spam strategy: heuristic or ml (requires OpenAI configuration)
anti_spam_strategy: heuristic
# Management API configuration
api:
enabled: True
# Enable the Telegram MFA login via the management API
telegram_login_enabled: True
# Credentials are handled via the in-memory secret manager
# The Telegram auth request expiration in seconds
telegram_auth_request_expiration: 300
# Allow CORS requests from these origins
cors_origins: ["*"]
# logger setup
logger:
level: "DEBUG" # NOTSET, DEBUG, INFO, WARNING, ERROR, CRITICAL
file_max_bytes: 10485760 # 10MB
file_backup_count: 5
# format: "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
format: "%(asctime)s %(levelprefix)s %(message)s"
date_format: "%Y-%m-%d %H:%M:%S"
# Whether to log to console or not
console: True # set to true to enable console logging and disable file based logging
# Telegram configuration
telegram:
# Your Telegram phone number | With quotes
phone: "<your phone number>"
# Your Telegram password (Two-step verification) | With quotes
password: "<your password>"
# This has to be an integer. Read more [here](https://core.telegram.org/api/obtaining_api_id) | No quotes
api_id: <your api id>
# Long 32 characters hash identifier. Read more [here](https://core.telegram.org/api/obtaining_api_id) | With quotes
api_hash: "<your api hash>"
# Whether to log the conversations that aren't available for forwarding (private chats, etc.)
log_unhandled_dialogs: False
# Subscribe to EditMessage events to update the message on Discord
subscribe_to_edit_events: True
# Subscribe to DeleteMessage events to delete the message on Discord
subscribe_to_delete_events: True
# Discord configuration
discord:
# Discord Bot Token. Go create a bridge on discord. | No quotes
bot_token: "<your bot token>"
# built-in roles in discord, they need special attention when parsing thee name to mention
built_in_roles: ["everyone", "here", "@Admin"]
# Discord Client max tolerable latency
max_latency: 0.5
# OpenAI configuration
openai:
enabled: False
# OpenAI API Key and Organization. Read more [here](https://beta.openai.com/docs/api-reference)
api_key: "<your openai api key>"
organization: "<your openai organization>"
# The prompt to use for OpenAI, the #text_to_parse will be appended to this prompt
sentiment_analysis_prompt:
- "Analyze the following text to determine its sentiment: #text_to_parse.\n\n"
- "<add the rest of your prompt, if any, here>.\n\n"
- "<add the rest of your prompt, if any, here>.\n\n"
# The channels map to discord channels.
telegram_forwarders:
- forwarder_name: "<forwarder_name>"
tg_channel_id: <tg channel id>
discord_channel_id: <discord channel id>
strip_off_links: False # whether to strip off links from the message
send_as_embed: False # whether to send messages as Discord embeds
mention_everyone: True
forward_everything: False # whether forwarding everything regardless the hashtag
forward_hashtags:
- name: "#example1"
override_mention_everyone: True
- name: "#example6"
- forwarder_name: "<forwarder_name>"
tg_channel_id: <tg channel id>
discord_channel_id: <discord channel id>
strip_off_links: False # whether to strip off links from the message
send_as_embed: False # whether to send messages as Discord embeds
mention_everyone: False
forward_everything: False # whether forwarding everything regardless the hashtag
mention_override: # tags can be hashtags or any substring
- tag: "#important"
roles: ["everyone", "here", "@Admin"]
- tag: "+++"
roles: ["Trading", "here"]
forward_hashtags:
- name: "#example3"
override_mention_everyone: True
- name: "#example4"
excluded_hashtags:
- name: "#sponsored"
- name: "#sponsor"Finally, start the bridge and watch the magic happen:
python forwarder.py --start # it will start the bridge in the foregroundpython forwarder.py --start --background # it will start the bridge in background, requires the `Logger` console set to FalseYou can control the process with a stop command:
python forwarder.py --stopOnce the script gets going, it will eavesdrop on new messages in the specified Telegram channels. Messages can be filtered based on hashtags, and you can configure the bridge to mention specific roles or users in Discord when forwarding messages. The bridge supports built-in Discord roles like "@everyone" and "@here" and custom role names.
In addition to text messages, the bridge can forward media files such as photos, videos, and documents from Telegram to Discord. The bridge also handles replies to messages and embeds them as Discord replies, maintaining a mapping of forwarded messages for easier correspondence tracking between the two platforms.
When api.enabled is set, the bridge exposes a FastAPI service on port 8000 for basic process control and configuration.
# Check health
curl http://localhost:8000/api/v1/bridge/health
# Start or stop the bridge
curl -X POST http://localhost:8000/api/v1/bridge/start
curl -X POST http://localhost:8000/api/v1/bridge/stop
# Fetch current configuration summary
curl http://localhost:8000/You can run the bridge in a Docker container. Pre-built images are published to GitHub Packages.
# pull the latest published image
docker pull ghcr.io/hyp3rd/bridge:v1.2.5
# run the bridge mounting your configuration
docker run -p 8000:8000 -v $(pwd)/config.yml:/app/config.yml:ro ghcr.io/hyp3rd/bridge:v1.2.5To build the image from source:
docker build -t ghcr.io/hyp3rd/bridge:v1.2.5 .Or spin it up with Docker Compose:
docker compose up -dThe bridge now ships with pluggable storage backends for message history. By default it keeps mappings in a local JSON file but you can switch to a SQLite database via configuration. JSON files are automatically rotated when they exceed the configured size, and log files honour the same rotation and optional compression settings.
This project adheres to Semantic Versioning. Release changes are documented in CHANGELOG.md. Docker images are tagged with the same version number and published to GitHub's container registry.
Contributions are welcome! Read the CONTRIBUTING guidelines for details on setting up your environment and submitting pull requests. Feature requests can be filed through GitHub issues using the "enhancement" label.
If you're new to the project, look for issues marked good first issue or help wanted in the tracker—they're perfect entry
points for newcomers.
This project is licensed under the MIT License - see the LICENSE file for details.
This project is a masked vigilante inspired by the base idea of Telegram-To-Discord-Forward-Bot by kkapuria3.
This project is not affiliated with Telegram or Discord. It is an open-source project developed by a single person in their spare time. It is provided as-is, with no warranty whatsoever. Use it at your own risk.
I'm a surfer, a crypto trader, and a software architect with 15 years of experience designing highly available distributed production environments and developing cloud-native apps in public and private clouds. Just your average bloke. Feel free to connect with me on LinkedIn, but no funny business.