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(token="YOUR_TOKEN_BOT")
@bot.on_message(filters.private)
async def welcome_message(client, message: Update):
send = await message.reply("Hi, WELCOME TO RUBIGRAM")
await send.edit_text("message was edited")
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", "Button 1"),
Button("2", "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()
Contex Manager
from rubigram import Client
import asyncio
bot = Client("YOUR_BOT_TOKEN")
async def main():
async with bot:
data = await bot.get_me()
print(data.bot_id)
asyncio.run(main())
Implementation of multiple programs
from rubigram import Client
import asyncio
tokens = [
"TOKEN_1",
"TOKEN_2"
]
async def main():
for token in tokens:
async with Client(token) as bot:
get_me = await bot.get_me()
print(get_me.asjson())
asyncio.run(main())
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.6.9.tar.gz
(13.0 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.6.9.tar.gz.
File metadata
- Download URL: rubigramclient-1.6.9.tar.gz
- Upload date:
- Size: 13.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b47a3353e2464e3a2cead57e3ee1ec0ba72671ae02011c25e43c99b6ce37723
|
|
| MD5 |
fd6cddf7d35fc0677a44b29b62e4711a
|
|
| BLAKE2b-256 |
6dd9c8b1eb3eba85dc832c402580c903377273b56609289e4b17977fa541612c
|
File details
Details for the file rubigramclient-1.6.9-py3-none-any.whl.
File metadata
- Download URL: rubigramclient-1.6.9-py3-none-any.whl
- Upload date:
- Size: 15.3 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 |
a2f5fb19aeea8b0170ef651879de24de29e5cf4b5bb77454bd507219e70b1478
|
|
| MD5 |
f1ac136c67c16e83e1b314f4fef08d4c
|
|
| BLAKE2b-256 |
f0f26ee80517fe4c35f248ab9a4606909f8e8f3d58f9425c25d1cd2d045773f7
|