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.2.tar.gz
(34.5 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.2-py3-none-any.whl
(59.3 kB
view details)
File details
Details for the file rubxy-0.1.2.tar.gz.
File metadata
- Download URL: rubxy-0.1.2.tar.gz
- Upload date:
- Size: 34.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f4ce3b1ab96cbd843201d0564604d8531254a9b1da81894b0b0b162afe98e3e7
|
|
| MD5 |
4e64da48128e7831c0cafb7a1ca7f6d8
|
|
| BLAKE2b-256 |
ea094ffc84cd02de9f1e223f1941a3fe981e545d6339c89ea6c0a9b3cacc65da
|
File details
Details for the file rubxy-0.1.2-py3-none-any.whl.
File metadata
- Download URL: rubxy-0.1.2-py3-none-any.whl
- Upload date:
- Size: 59.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
76a0d2a7ca38e1611c906db7af4777c0de7b338d40516e7973649fe2471d7630
|
|
| MD5 |
180768373348eaae3ac957cadd305f25
|
|
| BLAKE2b-256 |
8d83f3155d807ac0a602409ee22276a2d822acacc187d7a7501b316048be7e7a
|