RubigramClient 0.1.0__tar.gz → 1.1.1__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.

@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: RubigramClient
3
+ Version: 1.1.1
4
+ Summary: A Python library for connect to Rubika API
5
+ Author-email: Javad RJ <Javad.Py1385@gmail.com>
6
+ Requires-Python: >=3.7
7
+ Description-Content-Type: text/markdown
8
+ License-File: LICENSE
9
+ Dynamic: license-file
10
+
11
+ Rubigram
12
+
13
+ ```python
14
+ from rubigram import Client, filter
15
+ from rubigram.types import Message
16
+
17
+ client = Client("Your_Bot_Token")
18
+
19
+ @bot.on_message(filter.command("start"))
20
+ async def start(client: Client, message: Message):
21
+ chat_id = message.chat_id
22
+ await message.reply("Hi, {}".format(chat_id))
23
+
24
+ client.run()
@@ -0,0 +1,14 @@
1
+ Rubigram
2
+
3
+ ```python
4
+ from rubigram import Client, filter
5
+ from rubigram.types import Message
6
+
7
+ client = Client("Your_Bot_Token")
8
+
9
+ @bot.on_message(filter.command("start"))
10
+ async def start(client: Client, message: Message):
11
+ chat_id = message.chat_id
12
+ await message.reply("Hi, {}".format(chat_id))
13
+
14
+ client.run()
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: RubigramClient
3
+ Version: 1.1.1
4
+ Summary: A Python library for connect to Rubika API
5
+ Author-email: Javad RJ <Javad.Py1385@gmail.com>
6
+ Requires-Python: >=3.7
7
+ Description-Content-Type: text/markdown
8
+ License-File: LICENSE
9
+ Dynamic: license-file
10
+
11
+ Rubigram
12
+
13
+ ```python
14
+ from rubigram import Client, filter
15
+ from rubigram.types import Message
16
+
17
+ client = Client("Your_Bot_Token")
18
+
19
+ @bot.on_message(filter.command("start"))
20
+ async def start(client: Client, message: Message):
21
+ chat_id = message.chat_id
22
+ await message.reply("Hi, {}".format(chat_id))
23
+
24
+ client.run()
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "RubigramClient"
7
- version = "0.1.0"
7
+ version = "1.1.1"
8
8
  description = "A Python library for connect to Rubika API"
9
9
  readme = "README.md"
10
10
  authors = [
@@ -0,0 +1,3 @@
1
+ from .client import Client
2
+ from .filters import filter
3
+ from . import types
@@ -1,11 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: RubigramClient
3
- Version: 0.1.0
4
- Summary: A Python library for connect to Rubika API
5
- Author-email: Javad RJ <Javad.Py1385@gmail.com>
6
- Requires-Python: >=3.7
7
- Description-Content-Type: text/markdown
8
- License-File: LICENSE
9
- Dynamic: license-file
10
-
11
- python -m twine upload -u token -p pypi-AgEIcHlwaS5vcmcCJDM3ZGM2OTFmLWJkNDQtNDRkNy1hOWQ5LWRmNGZlM2Y2NjkwNAACKlszLCI1YzNiYjZiYS01YWEzLTQwZjQtYmQyNC1kMTdiOTg0MjRjNWMiXQAABiCdw4uqs3lDpnGPuPeSZSfYSacF21-SYevphQLzU5G2vg dist/*
@@ -1 +0,0 @@
1
- python -m twine upload -u token -p pypi-AgEIcHlwaS5vcmcCJDM3ZGM2OTFmLWJkNDQtNDRkNy1hOWQ5LWRmNGZlM2Y2NjkwNAACKlszLCI1YzNiYjZiYS01YWEzLTQwZjQtYmQyNC1kMTdiOTg0MjRjNWMiXQAABiCdw4uqs3lDpnGPuPeSZSfYSacF21-SYevphQLzU5G2vg dist/*
@@ -1,11 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: RubigramClient
3
- Version: 0.1.0
4
- Summary: A Python library for connect to Rubika API
5
- Author-email: Javad RJ <Javad.Py1385@gmail.com>
6
- Requires-Python: >=3.7
7
- Description-Content-Type: text/markdown
8
- License-File: LICENSE
9
- Dynamic: license-file
10
-
11
- python -m twine upload -u token -p pypi-AgEIcHlwaS5vcmcCJDM3ZGM2OTFmLWJkNDQtNDRkNy1hOWQ5LWRmNGZlM2Y2NjkwNAACKlszLCI1YzNiYjZiYS01YWEzLTQwZjQtYmQyNC1kMTdiOTg0MjRjNWMiXQAABiCdw4uqs3lDpnGPuPeSZSfYSacF21-SYevphQLzU5G2vg dist/*
@@ -1,3 +0,0 @@
1
- from .client import Client
2
- from . import filters
3
- from . import types
File without changes
File without changes