Skip to main content

This is an unofficial library for deploying robots on Rubika accounts.

Project description

rubpy

The official rubpy repository, unofficial and high-speed library for rubika...

how to install library

Enter the following command to install the library in your terminal

pip install rubpy

Web Socket Example

from rubpy.socket import Client
import asyncio

socket = Client('YOUR-AUTH')

async def main():
	while 1:
		async for chats in socket.handler():
			try:
				for chat in chats:
					if chat['object_guid'].startswith('g'):
						if not chat['object_guid'] + chat['chat']['last_message']['message_id'] in seened:
							text : str = chat['chat']['last_message']['text']
							print(text)
							seened.append(chat['object_guid'] + chat['chat']['last_message']['message_id'])
			except :
					...

This source code receives and prints the latest messages using the Rubica web socket

روبی

مخزن رسمی روبی، کتابخانه غیر رسمی و پرسرعت روبیکا...

مثال وب سوکت

from rubpy.socket import Client
import asyncio

socket = Client('YOUR-AUTH')

async def main():
	while 1:
		async for chats in socket.handler():
			try:
				for chat in chats:
					if chat['object_guid'].startswith('g'):
						if not chat['object_guid'] + chat['chat']['last_message']['message_id'] in seened:
							text : str = chat['chat']['last_message']['text']
							print(text)
							seened.append(chat['object_guid'] + chat['chat']['last_message']['message_id'])
			except :
					...

این سورس کد با استفاده از وب سوکت روبیکا آخرین پیام ها را دریافت میکند و چاپ میکند

چگونگی نصب کتابخانه

دستور زیر را در ترمینال خود برای نصب کتابخانه وارد کنید

pip install rubpy

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

rubpy-2.0.7.tar.gz (7.4 kB view hashes)

Uploaded Source

Supported by

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