Skip to main content

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


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.8.tar.gz (38.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rubxy-1.0.8-py3-none-any.whl (66.8 kB view details)

Uploaded Python 3

File details

Details for the file rubxy-1.0.8.tar.gz.

File metadata

  • Download URL: rubxy-1.0.8.tar.gz
  • Upload date:
  • Size: 38.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for rubxy-1.0.8.tar.gz
Algorithm Hash digest
SHA256 31f04466d4fde750d2121af0f0ea394b5075e1587e48636f9c85aef363118b30
MD5 43381a0dea3e409e7cf514c5d0947160
BLAKE2b-256 a8c3386c249ffbba1c4f4a9cd8cd91a089866903e28ef142f99efc07c9065ab0

See more details on using hashes here.

File details

Details for the file rubxy-1.0.8-py3-none-any.whl.

File metadata

  • Download URL: rubxy-1.0.8-py3-none-any.whl
  • Upload date:
  • Size: 66.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for rubxy-1.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 95e889a55a552fa84fe50e9f9107035cd529348a0613874993684996a1d545fb
MD5 bff21b08d6a74e2faf8553bea422c5f7
BLAKE2b-256 dc17172988b0b8726f50b75e1bc0d91be5574eddfb9f58c2d7e21cff8d468dc7

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page