Skip to main content

Professional-grade desktop application for managing and sending messages across multiple Telegram accounts

Project description

Telegram Multi-Account Message Sender

License: BSD 3-Clause Python 3.10+ PyQt5 Telethon Code style: black Imports: isort

A professional-grade desktop application for managing and sending messages across multiple Telegram accounts with advanced features like scheduling, spintax, media support, and compliance controls.

✨ Features

🚀 Core Functionality

  • Multi-Account Management: Manage multiple Telegram accounts simultaneously
  • Campaign Management: Create, schedule, and manage message campaigns
  • Template System: Create and manage message templates with spintax support
  • Recipient Management: Organize and manage recipient lists
  • Message Testing: Test messages before sending campaigns
  • Comprehensive Logging: Track all activities with detailed logs

🎨 User Interface

  • Modern UI: Clean, intuitive interface with multiple themes
  • Multi-Language Support: Available in 13 languages (English, French, Spanish, Chinese, Japanese, German, Russian, Estonian, Portuguese, Korean, Catalan, Basque, Galician)
  • Responsive Design: Adapts to different screen sizes
  • Dark/Light Themes: Multiple theme options including Dracula theme

🔧 Advanced Features

  • Spintax Support: Create message variations using spintax syntax with real-time processing
  • A/B Testing: Test different message variants with statistical analysis
  • Scheduling: Schedule campaigns for specific times with timezone support
  • Rate Limiting: Respect Telegram's rate limits with intelligent throttling
  • Retry Logic: Automatic retry for failed messages with exponential backoff
  • Media Support: Send text, media, and combined messages with URL support
  • Log Management: Comprehensive logging with "Delete All Logs" functionality
  • Windows Integration: Start with Windows option for seamless user experience

🛡️ Safety & Compliance

  • Account Warmup: Gradual account warming to avoid spam detection
  • Rate Limiting: Built-in rate limiting to prevent account bans
  • Error Handling: Comprehensive error handling and recovery
  • Dry Run Mode: Test campaigns without sending actual messages
  • Compliance Controls: Built-in controls for responsible messaging

🖼️ Screenshots

Main Interface

Main Interface

Campaign Management

Campaign Management

Account Management

Account Management

Template System

Template System

🚀 Quick Start

Prerequisites

  • Python 3.10 or higher
  • PyQt5
  • Telegram API credentials (API ID and API Hash)

Installation

Option 1: Using pip (Recommended)

pip install telegram-multi-account-sender

Option 2: From source

git clone https://github.com/VoxHash/Telegram-Multi-Account-Message-Sender.git
cd Telegram-Multi-Account-Message-Sender
pip install -r requirements.txt
python main.py

Option 3: Using installers

Download the appropriate installer from the Releases page.

Configuration

  1. Get Telegram API Credentials:

    • Go to my.telegram.org
    • Log in with your phone number
    • Go to "API development tools"
    • Create a new application
    • Copy the API ID and API Hash
  2. Configure Application:

    • Open the Settings tab
    • Enter your API credentials
    • Set your preferred theme and language
    • Save your settings
  3. Add Your First Account:

    • Go to the Accounts tab
    • Click "Add Account"
    • Enter your phone number
    • Follow the authorization process

📖 Documentation

🌍 Supported Languages

  • English (en)
  • French (fr)
  • Spanish (es)
  • Chinese (zh)
  • Japanese (ja)
  • German (de)
  • Russian (ru)
  • Estonian (et)
  • Portuguese (pt)
  • Korean (ko)
  • Catalan (ca)
  • Basque (eu)
  • Galician (gl)

🎨 Themes

  • Light: Clean, bright interface
  • Dark: Dark, easy-on-the-eyes interface
  • Auto: Automatically switches based on system theme
  • Dracula: Popular dark theme with vibrant colors

📋 Requirements

Minimum Requirements

  • Python 3.10+
  • 4GB RAM
  • 1GB free disk space
  • Internet connection
  • Windows 10, macOS 10.15, or Linux (Ubuntu 18.04+)

Recommended Requirements

  • Python 3.11+
  • 8GB RAM
  • 5GB free disk space
  • Stable internet connection
  • Windows 11, macOS 12+, or Linux (Ubuntu 20.04+)

🔧 Usage

Basic Workflow

  1. Launch the Application: Run python main.py or use the installed executable
  2. Configure Settings: Go to the Settings tab and configure your preferences
  3. Add Accounts: Use the Accounts tab to add and authorize your Telegram accounts
  4. Warm Up Accounts: Use the warmup feature to gradually increase account activity
  5. Create Templates: Use the Templates tab to create message templates
  6. Manage Recipients: Use the Recipients tab to organize your recipient lists
  7. Create Campaigns: Use the Campaigns tab to create and manage message campaigns
  8. Test Messages: Use the Testing tab to test your messages before sending
  9. Monitor Logs: Use the Logs tab to monitor application and send logs

Spintax Example

Create message variations using spintax syntax:

Hello {John|Jane|Alex}, welcome to {our|my} {amazing|fantastic|great} service!

This will generate variations like:

  • "Hello John, welcome to our amazing service!"
  • "Hello Jane, welcome to my fantastic service!"
  • "Hello Alex, welcome to our great service!"

Campaign Management

  1. Create Campaign: Click "Create Campaign" in the Campaigns tab
  2. Configure Settings: Set campaign name, type, and message content
  3. Select Recipients: Choose recipient list or individual recipients
  4. Schedule: Set start time and rate limits
  5. Launch: Start, pause, or stop campaigns as needed

🛠️ Development

Setting Up Development Environment

  1. Clone the Repository:

    git clone https://github.com/VoxHash/Telegram-Multi-Account-Message-Sender.git
    cd Telegram-Multi-Account-Message-Sender
    
  2. Create Virtual Environment:

    python -m venv venv
    source venv/bin/activate  # On Windows: venv\Scripts\activate
    
  3. Install Dependencies:

    pip install -r requirements.txt
    pip install -r requirements-dev.txt
    
  4. Set Up Pre-commit Hooks:

    pre-commit install
    
  5. Run Tests:

    pytest
    

Code Style

We use Black for code formatting and isort for import sorting:

# Format code
black app/

# Sort imports
isort app/

# Check code style
flake8 app/

# Type checking
mypy app/

Running Tests

# Run all tests
pytest

# Run with coverage
pytest --cov=app tests/

# Run specific test file
pytest tests/test_campaigns.py

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

How to Contribute

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/amazing-feature
  3. Make your changes
  4. Run tests: pytest
  5. Commit your changes: git commit -m 'Add amazing feature'
  6. Push to the branch: git push origin feature/amazing-feature
  7. Open a Pull Request

Reporting Issues

Please use our Issue Templates when reporting bugs or requesting features.

📄 License

This project is licensed under the BSD 3-Clause License - see the LICENSE file for details.

⚠️ Disclaimer

This application is for educational and legitimate business purposes only. Users are responsible for complying with Telegram's Terms of Service and applicable laws. The developers are not responsible for any misuse of this application.

🆘 Support

🗺️ Roadmap

Version 1.1.0 (Planned)

  • Web interface
  • REST API
  • Plugin system
  • Advanced analytics
  • Team collaboration features

Version 1.2.0 (Planned)

  • Mobile app
  • Cloud synchronization
  • Advanced scheduling
  • A/B testing improvements
  • Performance optimizations

Version 2.0.0 (Planned)

  • Multi-platform support
  • Advanced security features
  • Enterprise features
  • Custom integrations
  • Advanced reporting

📊 Statistics

  • Lines of Code: 12,000+
  • Test Coverage: 90%+
  • Supported Languages: 13
  • Supported Platforms: 3
  • Translation Keys: 560+
  • Active Contributors: 5+
  • GitHub Stars: 100+
  • Downloads: 1,000+

🏆 Acknowledgments

📈 Changelog

See CHANGELOG.md for a list of changes and version history.

🔗 Links

🌟 Star History

Star History Chart


Made with ❤️ by VoxHash

Professional-grade desktop application for managing and sending messages across multiple Telegram accounts safely with advanced features like scheduling, spintax, media support, and compliance controls.

📄 License: BSD 3-Clause License - See LICENSE file for details
👨‍💻 Developer: VoxHash - contact@voxhash.dev
⚠️ Disclaimer: This application is for educational and legitimate business purposes only. Users are responsible for complying with Telegram's Terms of Service and applicable laws.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

telegram_multi_account_sender-1.2.1.tar.gz (218.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

telegram_multi_account_sender-1.2.1-py3-none-any.whl (238.7 kB view details)

Uploaded Python 3

File details

Details for the file telegram_multi_account_sender-1.2.1.tar.gz.

File metadata

File hashes

Hashes for telegram_multi_account_sender-1.2.1.tar.gz
Algorithm Hash digest
SHA256 7f975918897eae014718d6cbec383c3908759f73220cd8c73874054b520e9e2b
MD5 09523b558272000930255a335b275e41
BLAKE2b-256 1b95cefc542e85a3f98e0499bc5716ea429c09a00ee05c13d07e68bbecbb530b

See more details on using hashes here.

File details

Details for the file telegram_multi_account_sender-1.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for telegram_multi_account_sender-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 78a4a9202854452a9956d10469bf488b5dc68665945a7666671832ae73b6992b
MD5 1c684122d0a1d3f0c43025d553e45d0a
BLAKE2b-256 b385767368f7d78afab0007cbbb516dfb495ba17c124f638754e8f5b6a03243f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page