Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pyrubi

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pyrubi

This is a powerful and easy library for building self bot in the Rubika.

  • 3.6.0
  • PyPI
  • Socket score

Maintainers
1
pyrubi image

Fast & powerfull Rubika API library
GitHubDocuments

Pyrubi 3.6.0

Downloads

Fast and powerfull Rubika API library for building self bots.


Install or Update:

pip install -U pyrubi

Quick start:

from pyrubi import Client
from pyrubi.types import Message

client = Client("mySelf")

@client.on_message(regexp="hello")
def send_hello(message: Message):
    message.reply("**hello** __from__ ##pyrubi##")

client.run()

also you can enter your session data manually:

from pyrubi import Client
from pyrubi.types import Message

auth_key = "abcdefghijklnopkrstuvwxyzazxcqwe"
private_key = "-----BEGIN RSA PRIVATE KEY-----\n..."

client = Client(auth=auth_key, private=private_key)

@client.on_message(regexp="hello")
def send_hello(message: Message):
    message.reply("**hello** __from__ ##pyrubi##")

client.run()

Features:

  • Fast : The requests are very fast and optimize.

  • Powerful : While the library is simple, it has high speed and features that make your work easier and faster

  • Easy : All methods and features are designed as easy and optimal as possible


Social Media:

Rubika


🌟 Star History

Star History Chart

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc