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-0.1.8.tar.gz
(39.2 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-0.1.8-py3-none-any.whl
(66.5 kB
view details)
File details
Details for the file rubxy-0.1.8.tar.gz.
File metadata
- Download URL: rubxy-0.1.8.tar.gz
- Upload date:
- Size: 39.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9bdf856ce1dcfe710c4c3e54798ea4742049c753443588249fc162d5a320875
|
|
| MD5 |
42e8a813a33afd960829c6d0e8ef57fb
|
|
| BLAKE2b-256 |
92e246508584d9a4ba63b7158b57e31976245563968e8bcf231d8fcb68e540ef
|
File details
Details for the file rubxy-0.1.8-py3-none-any.whl.
File metadata
- Download URL: rubxy-0.1.8-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 |
a8d078306fdb420d48bc2d4289f861ae97dfac329c44731bad245431b68498a4
|
|
| MD5 |
e59339a7fc5d8646c23cf157aecc0da9
|
|
| BLAKE2b-256 |
d9e3e6db24fd7106b98e6bef170ad6a22630b93b4b10dd0363c825cf684dd6bf
|