Rubka 7.1.2__py3-none-any.whl → 7.1.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of Rubka might be problematic. Click here for more details.
- rubka/rubino.py +26 -0
- rubka/tv.py +6 -0
- {rubka-7.1.2.dist-info → rubka-7.1.3.dist-info}/METADATA +1 -1
- {rubka-7.1.2.dist-info → rubka-7.1.3.dist-info}/RECORD +7 -7
- {rubka-7.1.2.dist-info → rubka-7.1.3.dist-info}/WHEEL +0 -0
- {rubka-7.1.2.dist-info → rubka-7.1.3.dist-info}/entry_points.txt +0 -0
- {rubka-7.1.2.dist-info → rubka-7.1.3.dist-info}/top_level.txt +0 -0
rubka/rubino.py
CHANGED
|
@@ -894,6 +894,22 @@ class Bot():
|
|
|
894
894
|
"target_profile_id": target_profile_id,
|
|
895
895
|
"profile_id": profile_id
|
|
896
896
|
},methode="getProfileFollowers")
|
|
897
|
+
def search_Follower(self,username,profile_id,target_profile_id,limit=10,search_type="Follower"):
|
|
898
|
+
return self._reuests_post(data={
|
|
899
|
+
"limit": limit,
|
|
900
|
+
"profile_id": profile_id,
|
|
901
|
+
"search_type": limit,
|
|
902
|
+
"target_profile_id": target_profile_id,
|
|
903
|
+
"username": username
|
|
904
|
+
},methode="searchFollower")
|
|
905
|
+
def search_Following(self,username,profile_id,target_profile_id,limit=10,search_type="Following"):
|
|
906
|
+
return self._reuests_post(data={
|
|
907
|
+
"limit": limit,
|
|
908
|
+
"profile_id": profile_id,
|
|
909
|
+
"search_type": limit,
|
|
910
|
+
"target_profile_id": target_profile_id,
|
|
911
|
+
"username": username
|
|
912
|
+
},methode="searchFollower")
|
|
897
913
|
|
|
898
914
|
def get_Page_Following(self,target_profile_id:str,sort:str="FromMax",limit:int=50,equal:bool=False,profile_id:str=None):
|
|
899
915
|
return self._reuests_post(data={
|
|
@@ -928,6 +944,16 @@ class Bot():
|
|
|
928
944
|
"username": username,
|
|
929
945
|
"profile_id": profile_id
|
|
930
946
|
},methode="getProfileFollowers")
|
|
947
|
+
def get_Related_Explore_Post(self,post_id:str,track_id,post_profile_id:str,limit:int=50,start_id:bool=False,profile_id:str=None,target_profile_id=None,):
|
|
948
|
+
return self._reuests_post(data={
|
|
949
|
+
"limit": limit,
|
|
950
|
+
"post_id": post_id,
|
|
951
|
+
"post_profile_id": post_profile_id,
|
|
952
|
+
"start_id": start_id,
|
|
953
|
+
"target_profile_id": target_profile_id,
|
|
954
|
+
"track_id": track_id,
|
|
955
|
+
"profile_id": profile_id
|
|
956
|
+
},methode="getRelatedExplorePost")
|
|
931
957
|
|
|
932
958
|
def get_Highlight_StoryIds(self,highlight_id:str,profile_id:str,target_profile_id:str):
|
|
933
959
|
return self._reuests_post(data={
|
rubka/tv.py
CHANGED
|
@@ -99,6 +99,12 @@ class TV:
|
|
|
99
99
|
async def get_wish_list(self, start_id: Optional[str] = None):
|
|
100
100
|
return await self._request_post("getWishList", {"start_id": start_id})
|
|
101
101
|
|
|
102
|
+
async def get_Property_Types(self):
|
|
103
|
+
return await self._request_post("getPropertyTypes", {})
|
|
104
|
+
|
|
105
|
+
async def get_Listing(self, listing_id: Optional[str] = "home"):
|
|
106
|
+
return await self._request_post("getListing", {"listing_id": listing_id})
|
|
107
|
+
|
|
102
108
|
async def get_me(self):
|
|
103
109
|
return await self._request_post("getAccountInfo", {})
|
|
104
110
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Rubka
|
|
3
|
-
Version: 7.1.
|
|
3
|
+
Version: 7.1.3
|
|
4
4
|
Summary: rubika A Python library for interacting with Rubika Bot API.
|
|
5
5
|
Home-page: https://github.com/Mahdy-Ahmadi/Rubka
|
|
6
6
|
Download-URL: https://github.com/Mahdy-Ahmadi/rubka/archive/refs/tags/v6.6.4.zip
|
|
@@ -12,8 +12,8 @@ rubka/jobs.py,sha256=GvLMLsVhcSEzRTgkvnPISPEBN71suW2xXI0hUaUZPTo,378
|
|
|
12
12
|
rubka/keyboards.py,sha256=7nr-dT2bQJVQnQ6RMWPTSjML6EEk6dsBx-4d8pab8xk,488
|
|
13
13
|
rubka/keypad.py,sha256=yGsNt8W5HtUFBzVF1m_p7GySlu1hwIcSvXZ4BTdrlvg,9558
|
|
14
14
|
rubka/logger.py,sha256=J2I6NiK1z32lrAzC4H1Et6WPMBXxXGCVUsW4jgcAofs,289
|
|
15
|
-
rubka/rubino.py,sha256=
|
|
16
|
-
rubka/tv.py,sha256=
|
|
15
|
+
rubka/rubino.py,sha256=1vr3lxKWkZ6len8niyB3b92vUR-uaui71vBoydBq52A,60093
|
|
16
|
+
rubka/tv.py,sha256=rBoyCadCH3I3YqQGrQYv_dLtTg1I63AzVf1orn-hbko,5724
|
|
17
17
|
rubka/update.py,sha256=-oC9h7U_H3CrtqUCDCnFXAvC7zdSmwxlc0CNwL1XLxM,34314
|
|
18
18
|
rubka/utils.py,sha256=XUQUZxQt9J2f0X5hmAH_MH1kibTAfdT1T4AaBkBhBBs,148
|
|
19
19
|
rubka/adaptorrubka/__init__.py,sha256=6o2tCXnVeES7nx-LjnzsuMqjKcWIm9qwKficLE54s-U,83
|
|
@@ -37,8 +37,8 @@ rubka/adaptorrubka/types/socket/message.py,sha256=0WgLMZh4eow8Zn7AiSX4C3GZjQTkIg
|
|
|
37
37
|
rubka/adaptorrubka/utils/__init__.py,sha256=OgCFkXdNFh379quNwIVOAWY2NP5cIOxU5gDRRALTk4o,54
|
|
38
38
|
rubka/adaptorrubka/utils/configs.py,sha256=nMUEOJh1NqDJsf9W9PurkN_DLYjO6kKPMm923i4Jj_A,492
|
|
39
39
|
rubka/adaptorrubka/utils/utils.py,sha256=5-LioLNYX_TIbQGDeT50j7Sg9nAWH2LJUUs-iEXpsUY,8816
|
|
40
|
-
rubka-7.1.
|
|
41
|
-
rubka-7.1.
|
|
42
|
-
rubka-7.1.
|
|
43
|
-
rubka-7.1.
|
|
44
|
-
rubka-7.1.
|
|
40
|
+
rubka-7.1.3.dist-info/METADATA,sha256=5mARCboZgBx0tMY1O9-ovDFxusr9zpgFNZQBH8SXong,34291
|
|
41
|
+
rubka-7.1.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
42
|
+
rubka-7.1.3.dist-info/entry_points.txt,sha256=4aESuUmuUOALMUy7Kucv_Gb5YlqhsJmTmdXLlZU9sJ0,46
|
|
43
|
+
rubka-7.1.3.dist-info/top_level.txt,sha256=vy2A4lot11cRMdQS-F4HDCIXL3JK8RKfu7HMDkezJW4,6
|
|
44
|
+
rubka-7.1.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|