Releases: shayanheidari01/rubika
Version 6.7.7 Rubpy
- 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
Information about the update: Click
rubpy-v5.2.2
v5.2.2
rubpy-v5.2.1
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
به روزرسانی نسخه 5.1.1 روبیکا پای منتشر شد
تغییرات:
اضافه شدن قابلیت های جدید
قابلیت مدیریت ربات(توسط توکن ربات)
رفع مشکلات آپلود و ارسال انواع فایل
رفع مشکلات بولد، ایتالیک و...
رفع مشکل افزودن عضو به گروه
رفع مشکلات و موارد دیگر...
به همراه این نسخه، یک سورس مدیریت گروه در ریپازیتوری(در پوشه Examples) قرار گرفته است
rubpy-5.2.0
⚡️به روزرسانی rubpy، نسخه 5.2.0 منتشر شد
تغییرات:
- تقریبا متد های کلاس Bot تکمیل شده است
- مشکل متد دانلود رفع شده است
- امکان فراخوانی متد ها از Client مجددا فراهم شده است
- مشکلات دیگر رفع شده است و...
نحوه نصب:
pip install rubpy==5.2.0
rubpy-v5.0.5
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
fixed bugs...
rubpy-v5.0.1-beta
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
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())