A simple and flexible Python library for building advanced Rubika bots with powerful message handling, inline buttons, and custom filters.
Project description
Rubigram
A lightweight Python library to build Rubika bots easily.
Installation
pip install RubigramClient
Send Message
from rubigram import Client, filters
from rubigram.types import Update
bot = Client("your_bot_token", "you_endpoint_url")
@bot.on_message(filters.command("start"))
async def start_handler(client, message: Update):
await message.reply("Hi, WELCOME TO RUBIGRAM")
bot.run()
Send Message & Get receiveInlineMessage
from rubigram import Client, filters
from rubigram.types import Update, Button, Keypad, KeypadRow, InlineMessage
bot = Client(token="bot_token", endpoint="endpoint_url")
@bot.on_message(filters.command("start"))
async def start(_, message: Update):
inline = Keypad(
rows=[
KeypadRow(
buttons=[
Button("1", "Simple", "Button 1"),
Button("2", "Simple", "Button 2")
]
)
]
)
await bot.send_message(message.chat_id, "Hi", inline_keypad=inline)
@bot.on_inline_message(filters.button(["1", "2"]))
async def button(_, message: InlineMessage):
if message.aux_data.button_id == "1":
await bot.send_message(message.chat_id, "You Click Button 1")
elif message.aux_data.button_id == "2":
await bot.send_message(message.chat_id, "You Click Button 2")
bot.run()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
rubigramclient-1.4.8.tar.gz
(8.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rubigramclient-1.4.8.tar.gz.
File metadata
- Download URL: rubigramclient-1.4.8.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
899ecc0c28fa4ed10d2e5f0667a9b9eaa1f7cf8e5c473e694cf2dc38cc04df81
|
|
| MD5 |
835e1f8eb43691a71e96e2696ca1cd6f
|
|
| BLAKE2b-256 |
7b2d3a983a949d1c0ee5018870ab6825051aac44c06ff9f5eeb184fa7c1e07ff
|
File details
Details for the file rubigramclient-1.4.8-py3-none-any.whl.
File metadata
- Download URL: rubigramclient-1.4.8-py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
139eaa442bddd5d61274ee618257ef4b1b24b72084488d91375f6bad7b08c42d
|
|
| MD5 |
c573d2b4021e65875eb5ccc6e23b6b2b
|
|
| BLAKE2b-256 |
1953cd209ffa55a1e3a62e97a1f371c4eec0628950457a3b0b9c74238cbf96d0
|