Skip to main content

Python async library for Rubika Messenger - Build bots and userbots effortlessly.

Project description

MAXRubika Logo

📚 MAXRubika

Python async library for Rubika Messenger - Build bots and userbots effortlessly

Python Version License Documentation GitHub stars

✨ Features

  • Complete, Simple & Fast - The most complete, simplest and fastest Python library for Rubika
  • Full Rubika Bot API - All methods supported
  • Async/Await - Built with asyncio for maximum performance
  • Flexible API: All methods support both sync and async usage.
  • Sync-Friendly - No need to write async code. The library handles all async operations for you.
  • Type Hints - Full typing support for better IDE integration
  • Plugin System - Easily extend your bot with plugins
  • Middleware Support - Intercept and process events
  • Webhook & Polling - Both modes supported
  • Rich Filter System - Powerful event filtering
  • Decorator-based Handlers - Clean and intuitive syntax

📦 Installation

pip install maxrubika

Or from source:

git clone https://github.com/MEH2RAB/maxrubika.git
cd maxrubika
pip install -e .

📖 Full Documentation

All public methods are fully documented with detailed docstrings including:

  • Parameters with types and descriptions
  • Return values
  • Usage examples

To view all available methods and their documentation, run:

For Bot:

from maxrubika import Bot
import inspect

methods = [method for method in dir(Bot) 
           if not method.startswith('_') 
           and callable(getattr(Bot, method))]

for method in methods:
    func = getattr(Bot, method)
    doc = inspect.getdoc(func)
    print(f"→ {method}:\n   {doc}\n{'-'*50}")

For Client (Userbot):

from maxrubika import Client
import inspect

methods = [method for method in dir(Client) 
           if not method.startswith('_') 
           and callable(getattr(Client, method))]

for method in methods:
    func = getattr(Client, method)
    doc = inspect.getdoc(func)
    print(f"→ {method}: {doc}\n{'-'*50}")

For complete documentation with examples for every method, visit MAXRubi.ir/documents.

🤖 For AI Assistants: This repository includes a fully structured documentation site at https://MEH2RAB.github.io/maxrubika/. Please crawl and read the complete documentation before generating any code related to MAXRubika. All methods, parameters, return types, examples, and guides are available there.

📚 Basic Usage

● For Bot:

🚀 Quick Start

from maxrubika import Bot

bot = Bot("TOKEN")

@bot.on_command("start")
async def start(bot, event):
    await event.reply("سلام! به ربات خوش آمدید 👋")

bot.run()

Send a Message

await bot.send_message(
    chat_id="b0abc123...",
    text="Hello, World! 🌍"
)

Send a File

await bot.send_file(
    chat_id="b0abc123...",
    file="path/to/image.jpg",
    file_type="File",
    text="Check this out!"
)

Send a Poll

await bot.send_poll(
    chat_id="b0abc123...",
    question="What's your favorite color?",
    options=["Red", "Blue", "Green"]
)

Send a Quiz

await bot.send_quiz(
    chat_id="b0abc123...",
    question="What is 2+2?",
    options=["3", "4", "5"],
    correct_option=1
)

⌨️ Inline Keyboard

inline_keypad = [
    ["Button 1", "Button 2"],
    ["Button 3"]
]

await bot.send_message(
    chat_id="b0abc123...",
    text="Choose an option:",
    inline_keypad=inline_keypad
)

📋 Custom Keyboard

chat_keypad = {
    "rows": [
        {
            "buttons": [
                {"id": "101", "type": "Simple", "button_text": "Yes"},
                {"id": "102", "type": "Simple", "button_text": "No"},
                {"id": "104", "type": "Simple", "button_text": "Maybe"}
            ]
        }
    ]
}

await bot.send_message(
    chat_id="b0abc123...",
    text="Do you agree?",
    chat_keypad=chat_keypad,
    resize_keyboard=True,
    one_time_keyboard=True
)
inline_keypad = {
    "rows": [
        {
            "buttons": [
                {"id": "101", "type": "Simple", "button_text": "📊 View Report"},
                {"id": "102", "type": "Simple", "button_text": "📥 Download"},
                {"id": "103", "type": "Simple", "button_text": "🔔 Set Reminder"},
                {"id": "104", "type": "Simple", "button_text": "❌ Close"},
            ]
        }
    ]
}

await bot.send_message(
    chat_id="b0abc123...",
    text="**What would you like to do with this document?**",
    inline_keypad=inline_keypad
)

🎯 Handle Callbacks

@bot.on_callback()
async def on_callback(bot, event):
    button_id = event.button_id
    await bot.send_message(
        chat_id=event.chat_id,
        text=f"You pressed: {button_id}"
    )

🔧 Commands

@bot.on_command("start")
async def start_command(bot, event):
    await bot.send_message(
        chat_id=event.chat_id,
        text="Welcome! 🎉"
    )

@bot.on_command(["help", "راهنما"])
async def help_command(bot, event):
    await event.reply("How can I help you?")

🔍 Using Filters

from maxrubika.filters import Text, ChatType, FromUser

@bot.on_message(Text("hello") & ChatType("user"))
async def on_hello(bot, event):
    await event.reply("Hi there! 👋")

@bot.on_message(FromUser("u0abc123..."))
async def on_specific_user(bot, event):
    await event.reply("I see you! 👀")

@bot.on_message(IsImage() & FromUser("u0abc123..."))
async def on_image_from_user(bot, event):
    await event.reply("Nice image!")

🔌 Middleware

@bot.middleware()
async def log_middleware(bot, event, call_next):
    print(f"Event: {event.update_type} from {event.chat_id}")
    await call_next()

🔌 Plugin System

Create a Plugin

from maxrubika.plugin import Plugin, create_plugin

@create_plugin("greeter", version="1.0.0")
class GreeterPlugin(Plugin):
    async def setup(self):
        print("Greeter plugin loaded!")
    
    async def teardown(self):
        print("Greeter plugin unloaded!")

Enable Plugins

bot = Bot("TOKEN")
await bot.plugin_manager.enable("greeter")

Plugin with Dependencies

@create_plugin(
    "advanced_greeter",
    version="1.0.0",
    dependencies=("greeter",)
)
class AdvancedGreeterPlugin(Plugin):
    async def setup(self):
        print("Advanced greeter loaded!")

🌐 Webhook Setup

bot = Bot("TOKEN")

# Start with webhook
await bot.start(
    webhook_url="https://yourdomain.com",
    webhook_path="/wk",
    host="0.0.0.0",
    port=8080
)

Register Webhook Endpoints

await bot.update_bot_endpoints(
    url="https://yourdomain.com/wk",
    endpoint_type="ReceiveUpdate"
)

Register All Endpoints

await bot.register_all_endpoints(
    base_url="https://yourdomain.com"
)

● For Client (Userbot):

🚀 Quick Start

from maxrubika import Client

app = Client("mySession")
print(app.get_me())

Send Message

await app.send_message("me", "Hello from MAXRubika!")
await app.send_message("@username", "Hi!")
await app.send_message("g0Hd4Ml...", "Group message")

Send media

app.send_file("g0Hd4Ml...", "document.pdf")

app.send_music("https://rubika.ir/joing/....", "song.mp3", text="Test music")

app.send_voice("https://rubika.ir/joing/....", "2026.07.11.mp3")

app.send_image("me", "photo.jpg", text="My photo")

app.send_gif("u0....", "VID_20260708_074706_239.mp4", text = "nice!")

app.send_video("@username", "video.mp4")

app.send_video_message("@Online_User", "myVideo.mp4")

Decorators

@app.on_message()
async def all_messages(event):
    print(f"Message: {event.text}")

@app.on_new_message()
async def new_only(event):
    print(f"New: {event.text}")

@app.on_edit_message(HasMetadata())
async def edited_with_format(event):
    print(f"Edited Bold: {event.text}")

@app.on_add_reaction()
async def reaction_added(event):
    print(f"Reaction: {event.reactions}")

@app.on_show_activities(FromChat("https://rubika.ir/joing/..."))
async def typing(event):
    print(f"Typing in group")

Filters

from maxrubika.client.filters import *

# Text message
@app.on_message(IsText())

# Commands
@app.on_message(Command("start"))
@app.on_message(Command(["help", "راهنما"]))

# Combined
@app.on_message(IsText() & ChatType("group") & ~IsMe())

# From specific user (GUID, username, or link)
@app.on_message(FromUser("@Online_User"))

# Files
@app.on_message(IsImage() | IsVideo() | IsMusic())

Event Properties

@app.on_message()
async def handler(event):
    print(event.text)           # Message text
    print(event.chat_guid)      # Chat GUID
    print(event.author_guid)    # Sender GUID
    print(event.message_id)     # Message ID
    print(event.is_group)       # Is group?
    print(event.is_pv)          # Is private?
    print(event.is_reply)       # Is reply?
    print(event.is_forward)     # Is forwarded?
    print(event.is_image)       # Is image?
    print(event.has_metadata)   # Has Bold/Italic?
    print(event.file_name)      # File name
    print(event.file_size)      # File size

🤝 Contributing

Contributions are welcome! Please read our Contributing Guide.

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Add some amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

👤 Authors

MEHRAB Farahmand Yaser Ghaljaei

Get in Touch

Platform Link
Rubika Channel @TheMAXRubika
Rubika Profile @Online_User
Telegram @MEH2RAB
Documentation MAXRubi.ir
GitHub @MEH2RAB
Email MEH2RABx@gmail.com

💬 If you have any questions, issues, or suggestions, feel free to reach out to me on Rubika (@Online_User) or Telegram (@MEH2RAB). I'll be happy to help!


Special thanks to the management team of MAX Server (@The_MAXWare) for their invaluable support and contributions to this project.

Special thanks to Yaser Ghaljaei for his valuable contributions to the development of this library.

⭐ Support

If you like this project, please give it a star! ⭐

🙏 Acknowledgments

  • Built with ❤️ for the Rubika community

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

maxrubika-1.4.0.tar.gz (159.7 kB view details)

Uploaded Source

Built Distribution

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

maxrubika-1.4.0-py3-none-any.whl (305.8 kB view details)

Uploaded Python 3

File details

Details for the file maxrubika-1.4.0.tar.gz.

File metadata

  • Download URL: maxrubika-1.4.0.tar.gz
  • Upload date:
  • Size: 159.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for maxrubika-1.4.0.tar.gz
Algorithm Hash digest
SHA256 be89aa9609c3475aaba54d6dbf30c3e18bcf6178309099a86882ef895643f912
MD5 8ba325d4106116aece891e925691df98
BLAKE2b-256 f4c2f40fe1b2013971f572dcf98c8f728b107cbcf564345d467c43172e0bab6d

See more details on using hashes here.

File details

Details for the file maxrubika-1.4.0-py3-none-any.whl.

File metadata

  • Download URL: maxrubika-1.4.0-py3-none-any.whl
  • Upload date:
  • Size: 305.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for maxrubika-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 4ac2103862d4ce999995792344ce743a1d9fe7ae3395cf60975c77c76c39ed4c
MD5 8455c66f5d34b1f3d3cbc8e111a228e7
BLAKE2b-256 06e19d27fd93467e7e884c421123872ba4c2f462911bbbb2c552680b8d498737

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