RubigramClient 1.3.6__tar.gz → 1.3.8__tar.gz
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 RubigramClient might be problematic. Click here for more details.
- {rubigramclient-1.3.6 → rubigramclient-1.3.8}/PKG-INFO +1 -1
- {rubigramclient-1.3.6 → rubigramclient-1.3.8}/RubigramClient.egg-info/PKG-INFO +1 -1
- {rubigramclient-1.3.6 → rubigramclient-1.3.8}/pyproject.toml +1 -1
- {rubigramclient-1.3.6 → rubigramclient-1.3.8}/rubigram/client.py +2 -2
- {rubigramclient-1.3.6 → rubigramclient-1.3.8}/LICENSE +0 -0
- {rubigramclient-1.3.6 → rubigramclient-1.3.8}/README.md +0 -0
- {rubigramclient-1.3.6 → rubigramclient-1.3.8}/RubigramClient.egg-info/SOURCES.txt +0 -0
- {rubigramclient-1.3.6 → rubigramclient-1.3.8}/RubigramClient.egg-info/dependency_links.txt +0 -0
- {rubigramclient-1.3.6 → rubigramclient-1.3.8}/RubigramClient.egg-info/requires.txt +0 -0
- {rubigramclient-1.3.6 → rubigramclient-1.3.8}/RubigramClient.egg-info/top_level.txt +0 -0
- {rubigramclient-1.3.6 → rubigramclient-1.3.8}/rubigram/__init__.py +0 -0
- {rubigramclient-1.3.6 → rubigramclient-1.3.8}/rubigram/filters.py +0 -0
- {rubigramclient-1.3.6 → rubigramclient-1.3.8}/rubigram/method.py +0 -0
- {rubigramclient-1.3.6 → rubigramclient-1.3.8}/rubigram/network.py +0 -0
- {rubigramclient-1.3.6 → rubigramclient-1.3.8}/rubigram/types.py +0 -0
- {rubigramclient-1.3.6 → rubigramclient-1.3.8}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: RubigramClient
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.8
|
|
4
4
|
Summary: A simple and flexible Python library for building advanced Rubika bots with powerful message handling, inline buttons, and custom filters.
|
|
5
5
|
Author-email: Javad RZ <Javad.Py1385@gmail.com>
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: RubigramClient
|
|
3
|
-
Version: 1.3.
|
|
3
|
+
Version: 1.3.8
|
|
4
4
|
Summary: A simple and flexible Python library for building advanced Rubika bots with powerful message handling, inline buttons, and custom filters.
|
|
5
5
|
Author-email: Javad RZ <Javad.Py1385@gmail.com>
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "RubigramClient"
|
|
3
|
-
version = "1.3.
|
|
3
|
+
version = "1.3.8"
|
|
4
4
|
description = "A simple and flexible Python library for building advanced Rubika bots with powerful message handling, inline buttons, and custom filters."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.7"
|
|
@@ -4,7 +4,7 @@ from aiohttp import web
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
class Client(Method):
|
|
7
|
-
def __init__(self, token: str, endpoint: str = None, host: str = "0.0.0.0", port: int =
|
|
7
|
+
def __init__(self, token: str, endpoint: str = None, host: str = "0.0.0.0", port: int = 8000):
|
|
8
8
|
self.token = token
|
|
9
9
|
self.port = port
|
|
10
10
|
self.host = host
|
|
@@ -55,7 +55,7 @@ class Client(Method):
|
|
|
55
55
|
await self.update(data)
|
|
56
56
|
return web.json_response({"status": "OK"})
|
|
57
57
|
|
|
58
|
-
@self.routes.post("/
|
|
58
|
+
@self.routes.post("/ReceiveInlineMessage")
|
|
59
59
|
async def receive_inline_message(request):
|
|
60
60
|
data = await request.json()
|
|
61
61
|
await self.update(data)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|