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.3.tar.gz
(8.3 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.3.tar.gz.
File metadata
- Download URL: rubigramclient-1.4.3.tar.gz
- Upload date:
- Size: 8.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fd31bd4ab59fb9c4e6992760cf6b0fde2ac255440ab2d5b2842664ec727acaf
|
|
| MD5 |
5b6ae39e0ed9f25f446881e462c995be
|
|
| BLAKE2b-256 |
bd3784809f11108d990c08f97a69e33eb7b7142d9c3138a73a096a5b62d5eb48
|
File details
Details for the file rubigramclient-1.4.3-py3-none-any.whl.
File metadata
- Download URL: rubigramclient-1.4.3-py3-none-any.whl
- Upload date:
- Size: 10.0 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 |
a29b7d18bfd7813be56b24edb821aadf380d36d224a6688b703b064e82a41e2b
|
|
| MD5 |
9a1e32d3cfb9d8119debd2907feb89a4
|
|
| BLAKE2b-256 |
c4708862eaa39d183751a35f3d936d393d0d10caedad5f846d9a324621919f6a
|