A Python library for interacting with the Rubika bot API.
Project description
rubxy
rubxy is a Python library for interacting with the Rubika bot API.
It makes it easy to send and receive messages, handle events, and build bots quickly.
Features
- Send and receive messages via Rubika API
- Easy-to-use event handlers
- Fully asynchronous & Support sync
Installation
pip install rubxy
Async Usage
-
Messages Updates
from rubxy import Client, filters from rubxy.types import Update client = Client(bot_token="BOT_TOKEN") @client.on_message(filters.commands("start")) async def start_handler(client: Client, update: Update): await update.reply("Hello from rubxy") # Run in long-polling mode client.run() # Or run in webhook mode (recommended) client.run(endpoint="https://example.com")
-
Inline Updates
from rubxy import Client, filters from rubxy.types import InlineMessage client = Client(bot_token="BOT_TOKEN") @client.on_inline_message(filters.regex("^button-(\w+)")) async def inline_message_handler(client: Client, i: InlineMessage): await i.answer( text="you clicked button-id: {}".format( i.matches[0].group(1) ) ) # Run in long-polling mode client.run() # Or run in webhook mode (recommended) client.run(endpoint="https://example.com")
Sync Usage
-
Messages Updates
from rubxy import Client, filters from rubxy.types import Update client = Client(bot_token="BOT_TOKEN") @client.on_message(filters.commands("start")) def start_handler(client: Client, update: Update): update.reply("Hello from rubxy") # Run in long-polling mode client.run() # Or run in webhook mode (recommended) client.run(endpoint="https://example.com")
-
Inline Updates
from rubxy import Client, filters from rubxy.types import InlineMessage client = Client(bot_token="BOT_TOKEN") @client.on_inline_message(filters.regex("^button-(\w+)")) def inline_message_handler(client: Client, i: InlineMessage): i.answer( text="you clicked button-id: {}".format( i.matches[0].group(1) ) ) # Run in long-polling mode client.run() # Or run in webhook mode (recommended) client.run(endpoint="https://example.com")
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
rubxy-1.0.4.tar.gz
(39.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
rubxy-1.0.4-py3-none-any.whl
(66.5 kB
view details)
File details
Details for the file rubxy-1.0.4.tar.gz.
File metadata
- Download URL: rubxy-1.0.4.tar.gz
- Upload date:
- Size: 39.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5e5f06e879cc30b2b2d7442c3830b78d289985ec7346c7979f153edf1896536e
|
|
| MD5 |
2843151643093befb9534219ea459ecc
|
|
| BLAKE2b-256 |
55f069ac49ba08edd6be92fe49d34fe04f8ef8bc5fe13ee8bdb4e08e3159482a
|
File details
Details for the file rubxy-1.0.4-py3-none-any.whl.
File metadata
- Download URL: rubxy-1.0.4-py3-none-any.whl
- Upload date:
- Size: 66.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc8f1142e14295c8fad61b49bf06e401ccfc6a8d61c1fc85561bd7b77226c56f
|
|
| MD5 |
27ac9244ae0ba7612ddbb4df24277e7f
|
|
| BLAKE2b-256 |
0f745ff8719c15e899515ae4dc4a952d5b1bc1b5be8adc24394b6e0247bb0d85
|