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.1.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-1.0.1-py3-none-any.whl
(66.5 kB
view details)
File details
Details for the file rubxy-1.0.1.tar.gz.
File metadata
- Download URL: rubxy-1.0.1.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 |
dbdbdad693a6775a1651f035908b65ab1e05f24334692fb741cc4a08366fb63d
|
|
| MD5 |
94b3a73a0648bffd9068166e00fd450f
|
|
| BLAKE2b-256 |
78c7ffe449e92187e79ddfbad95632a6e5dfb1faecceee6876c7dbdc9765d52e
|
File details
Details for the file rubxy-1.0.1-py3-none-any.whl.
File metadata
- Download URL: rubxy-1.0.1-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 |
ab87337018c1b23287fcfb39ea8214d7f8c1cdd8982adb5fc00af8c98ef5e487
|
|
| MD5 |
75baa4f74750641497db19d4ecd15d8b
|
|
| BLAKE2b-256 |
a5ca4dc4ac26542774fa4e34d486998828d8d8aaf9ef78f43f26705b1a14c659
|