Skip to content

Releases: shayanheidari01/rubika

Version 6.7.7 Rubpy

22 Jan 20:30
85fc9c2
Compare
Choose a tag to compare
  • Fixed the group_preview_by_join_link method bug
  • Fixed the channel_preview_by_join_link method bug
  • Fixed some bugs and optimized...

Install with Pip:

pip3 install -U rubpy

Rubpy Stable 6.4.9 Version

30 Nov 19:29
85755e3
Compare
Choose a tag to compare

Information about the update: Click

rubpy-v5.2.2

13 Apr 14:27
c3b722b
Compare
Choose a tag to compare
v5.2.2

rubpy-v5.2.1

22 Jan 09:30
1197438
Compare
Choose a tag to compare

rubpy update released

Changes:

  • Fixing the problem of the download method and increasing the speed
  • solving problems...

Install

pip3 install -U rubpy

OR

pip3 install https://github.com/shayanheidari01/rubika/releases/download/rubpy-v5.2.1/rubpy-5.2.1.tar.gz

rubpy-5.1.1

11 Dec 10:47
2b0c822
Compare
Choose a tag to compare

به روزرسانی نسخه 5.1.1 روبیکا پای منتشر شد

تغییرات:

اضافه شدن قابلیت های جدید
قابلیت مدیریت ربات(توسط توکن ربات)
رفع مشکلات آپلود و ارسال انواع فایل
رفع مشکلات بولد، ایتالیک و...
رفع مشکل افزودن عضو به گروه
رفع مشکلات و موارد دیگر...

به همراه این نسخه، یک سورس مدیریت گروه در ریپازیتوری(در پوشه Examples) قرار گرفته است

rubpy-5.2.0

11 Dec 20:19
e76465c
Compare
Choose a tag to compare

⚡️به روزرسانی rubpy، نسخه 5.2.0 منتشر شد

تغییرات:

  • تقریبا متد های کلاس Bot تکمیل شده است
  • مشکل متد دانلود رفع شده است
  • امکان فراخوانی متد ها از Client مجددا فراهم شده است
  • مشکلات دیگر رفع شده است و...

نحوه نصب:
pip install rubpy==5.2.0

rubpy-v5.0.5

05 Dec 15:56
8370fcb
Compare
Choose a tag to compare

In this version, some new features have been added, which are:

A useful feature has been added in the methods of_group and of_user

This feature is actually an argument in these methods and is designed to make your job easier!

These methods were used in the web socket handler to determine whether the received message is from the group or from PV.

But for the bot to work with the websocket handler only in your group or your pv, you needed to do a lot of work, but we made your work easier.

In order to specify one or more groups to work in the web socket handler, you need to give their identifiers in the list argument to the of_group and of_user methods, for example:

from rubpy import Client

app = Client(auth = 'My_Auth')

@app.newUpdatesHandler
async def my_bot(message):
    groups = await message.of_group(['my_group_guid', 'my_group_guid2'])
    print(groups)

In fact, the code above specifies that if a new message has been sent from the specified groups, it will return True, this can be specified in the if condition, and finally, it should be said that this feature can also be used in the of_user method, of course, pv identifiers must be specified

rubpy-v5.0.3

04 Dec 18:10
310817a
Compare
Choose a tag to compare

fixed bugs...

rubpy-v5.0.1-beta

04 Dec 08:54
0843326
Compare
Choose a tag to compare

In this version, many optimizations have been done in the library and some methods have been added for better handling of messages

rubpy-v4.7.0-beta

28 Nov 00:34
f0e6f1c
Compare
Choose a tag to compare
rubpy-v4.7.0-beta Pre-release
Pre-release

In this version, a new method to run the robot has been added, for example:

from rubpy import Client

app = Client("my_account")

async def hello():
    await app.sendMessage(message.get('object-guid'), 'Hello from **Rubpy**!')

app.run(hello())