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

Uploaded Source

Built Distribution

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

rubxy-0.1.4-py3-none-any.whl (59.9 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for rubxy-0.1.4.tar.gz
Algorithm Hash digest
SHA256 53fab1766862cf7352be0c01dc62ca543dc66e23852515ea3cbe9c17a81213e5
MD5 8450d990cfd25a7a31cef87b526557a3
BLAKE2b-256 7a3d906adaafd48c73c2515e202b1d57a8d3efad85879d089430d110ae013c84

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for rubxy-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 45863ea610cc374e1172d285b447996485e837770fb57ab72d1e0e0f1f6cefac
MD5 2b465c7e2a047d60a47f1b0cefeaa7a2
BLAKE2b-256 0f2051a85f74145777882e6e52de2cee056e0efa46dde844e45bc3b0415c1746

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