MCPcopy Index your code
hub / github.com/SilentDemonSD/WZML-X

github.com/SilentDemonSD/WZML-X @v3.1.6-x

Chat with this repo
repository ↗ · DeepWiki ↗ · release v3.1.6-x ↗ · + Follow
1,610 symbols 7,932 edges 164 files 164 documented · 10%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

WZML-X logo

WZML-X

Telegram mirroring and leeching platform with a container-based runtime, a lightweight web UI, and a configurable transfer pipeline.

Stars

Python

Docker Compose

Telegram

License

Last Commit

Index

Table of Contents Click Here

At a Glance

Area Details
Runtime Python Telegram bot + web UI
Deployment Docker & Docker Compose (buildx)
Required config BOT_TOKEN, TELEGRAM_API, TELEGRAM_HASH, OWNER_ID, DATABASE_URL
License LICENSE

Why Use It

WZML-X is built for users who want a single bot stack that can mirror, leech, manage files, and expose a simple web-based selection flow without stitching together multiple tools. The README focuses on what you need to deploy it quickly, understand the moving parts, and tune the behavior safely.

What It Covers

Capability Outcome
Mirroring Send files to Telegram with a controllable pipeline
Leeching Deliver files in the format you prefer, including document and media workflows
File selection UI Review and select torrent / NZB / upload contents before finalizing
Multi-source downloads Use qBittorrent, Aria2, JDownloader, Mega, NZB, and yt-dlp integrations
Storage and upload paths Push content to Google Drive, Rclone, Mega, and other supported routes
Automation Limit tasks, tune queues, and manage startup updates from one config layer

How It Runs

Deploy with Docker and provide the required configuration values. The container takes care of the runtime path, so users only need to build or start the image and set their settings.

What you need Click Here

  • Docker installed
  • Your Telegram bot token and Telegram API credentials
  • A MongoDB connection string
  • The optional service credentials you want to enable, such as Drive, Rclone, Mega, JDownloader, or SABnzbd

Deployment

VPS / Dedicated Server (Recommended)

bash git clone https://github.com/SilentDemonSD/WZML-X.git cd WZML-X cp config_sample.py config.py # Edit config.py with your values docker buildx compose up -d

The bot runs behind a Cloudflare quick tunnel by default. Check the tunnel URL:

bash docker compose logs tunnel

You'll see a https://*.trycloudflare.com URL — that's your bot's web UI.

To stop:

bash docker buildx compose down

VPS with VPN (Gluetun)

  1. Uncomment the gluetun service in docker-compose.yml
  2. Fill in your VPN provider credentials
  3. Set network_mode: "service:gluetun" on the app service
  4. Start:

bash docker buildx compose up -d

All traffic (including the cloudflared tunnel) routes through the VPN.

Multi-Instance (Multiple Bots)

Each bot needs its own config.py and data volumes. Example for a second bot:

  1. Create config2.py with different BOT_TOKEN, OWNER_ID, etc.
  2. Uncomment app2 and tunnel2 in docker-compose.yml
  3. Edit volume mounts to use config2.py and separate data dirs
  4. Start:

bash docker buildx compose up -d

Each bot gets its own cloudflared tunnel URL. Admin ports (qBittorrent, SABnzbd) are mapped to different host ports (127.0.0.1:8091, etc.).

Single Container (Manual)

bash git clone https://github.com/SilentDemonSD/WZML-X.git cd WZML-X docker build -t wzmlx . docker run -p 8080:8080 wzmlx

Deployment Notes

  1. If you use qBittorrent, tune AsyncIOThreadsCount to your machine size.
  2. Stop the container before removing it, and remove the container before pruning images.
  3. Useful cleanup commands:

bash docker container prune docker image prune -a

Legacy Workflow Guide

Some users still rely on the external workflow path referenced by the previous README:

Keep this only if that workflow still matches your deployment style.

Configuration

Start with the required values:

  • BOT_TOKEN
  • TELEGRAM_API
  • TELEGRAM_HASH
  • OWNER_ID
  • DATABASE_URL

Then tune the optional behavior from config_sample.py.

Important user-facing settings

Setting User impact
DEFAULT_LANG Bot language
STATUS_LIMIT How much status data is shown
DEFAULT_UPLOAD Default upload target
LEECH_SPLIT_SIZE How large leech outputs are split
QUEUE_ALL, QUEUE_DOWNLOAD, QUEUE_UPLOAD Queue pressure and concurrency
SHOW_CLOUD_LINK Whether cloud links are shown to users
WEB_PINCODE Protects web access to file selection

Integrations available in config

The sample config also covers:

  • qBittorrent and Aria2-related controls
  • JDownloader login details
  • Mega credentials
  • SABnzbd server definitions
  • Google Drive settings
  • RSS, search, media metadata, and logging controls

Project Layout

Path Purpose
bot/ Bot core, handlers, listeners, and modules
web/ FastAPI app, templates, and the file selector UI
gen_scripts/ Setup helpers for sessions, tokens, and drive configuration
plugins/ Optional bot plugins
qBittorrent/ Default qBittorrent configuration
sabnzbd/ Default SABnzbd configuration

Documentation

[!NOTE] This documentation is still being expanded.

  • Full guides: docs/
  • Deployment notes: the docs site linked from the repository at WZ Docs
  • Configuration reference: config_sample.py

Support

Join Community

  • Telegram channel: https://t.me/WZML_X
  • Support group: https://t.me/WZML_Support

Credits

WZML-X is a fork of mirror-leech-telegram-bot. The base project belongs to anasty17 and upstream contributors.

Bot Authors

Avatar Name Role Profile
SilentDemonSD SilentDemonSD Author, UI design, and custom features GitHub
RjRiajul RjRiajul Co-author and maintainer GitHub
CodeWithWeeb CodeWithWeeb Feature expansion and wrap-up improvements GitHub
Maverick Maverick Co-author and bug testing GitHub

License

This project is distributed under the terms of the repository license. See LICENSE for the full text.

Core symbols most depended-on inside this repo

get
called by 734
bot/core/config_manager.py
data_button
called by 442
bot/helper/telegram_helper/button_build.py
split
called by 306
bot/helper/ext_utils/media_utils.py
error
called by 251
bot/helper/mirror_leech_utils/download_utils/yt_dlp_download.py
send_message
called by 237
bot/helper/telegram_helper/message_utils.py
edit_message
called by 132
bot/helper/telegram_helper/message_utils.py
get_readable_file_size
called by 105
bot/helper/ext_utils/status_utils.py
build_menu
called by 96
bot/helper/telegram_helper/button_build.py

Shape

Method 907
Function 555
Class 143
Route 5

Languages

Python100%

Modules by API surface

bot/helper/listeners/mega_listener.py104 symbols
myjd/myjdapi.py84 symbols
bot/helper/mirror_leech_utils/download_utils/direct_link_generator.py71 symbols
bot/helper/ext_utils/mega_utils.py39 symbols
bot/helper/ext_utils/bot_utils.py35 symbols
myjd/exception.py34 symbols
bot/helper/ext_utils/db_handler.py28 symbols
web/wserver.py27 symbols
sabnzbdapi/job_functions.py27 symbols
bot/helper/ext_utils/media_utils.py24 symbols
bot/helper/ext_utils/files_utils.py24 symbols
bot/core/plugin_manager.py22 symbols

For agents

$ claude mcp add WZML-X \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page