PyRubikaBotAPI 0.0.1__tar.gz → 1.0.0__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.
- {pyrubikabotapi-0.0.1 → pyrubikabotapi-1.0.0}/PKG-INFO +4 -4
- {pyrubikabotapi-0.0.1 → pyrubikabotapi-1.0.0}/PyRubikaBotAPI.egg-info/PKG-INFO +4 -4
- {pyrubikabotapi-0.0.1 → pyrubikabotapi-1.0.0}/PyRubikaBotAPI.egg-info/SOURCES.txt +6 -2
- {pyrubikabotapi-0.0.1 → pyrubikabotapi-1.0.0}/rubibot/__init__.py +308 -266
- pyrubikabotapi-1.0.0/rubibot/exceptions.py +14 -0
- pyrubikabotapi-1.0.0/rubibot/metadata.py +71 -0
- pyrubikabotapi-1.0.0/rubibot/parse.py +134 -0
- pyrubikabotapi-1.0.0/rubibot/rubika_api.py +260 -0
- pyrubikabotapi-1.0.0/rubibot/types.py +360 -0
- pyrubikabotapi-1.0.0/rubibot/updates.py +327 -0
- {pyrubikabotapi-0.0.1 → pyrubikabotapi-1.0.0}/setup.py +4 -4
- pyrubikabotapi-0.0.1/rubibot/helper.py +0 -109
- pyrubikabotapi-0.0.1/rubibot/types.py +0 -242
- {pyrubikabotapi-0.0.1 → pyrubikabotapi-1.0.0}/LICENCE +0 -0
- {pyrubikabotapi-0.0.1 → pyrubikabotapi-1.0.0}/PyRubikaBotAPI.egg-info/dependency_links.txt +0 -0
- {pyrubikabotapi-0.0.1 → pyrubikabotapi-1.0.0}/PyRubikaBotAPI.egg-info/requires.txt +0 -0
- {pyrubikabotapi-0.0.1 → pyrubikabotapi-1.0.0}/PyRubikaBotAPI.egg-info/top_level.txt +0 -0
- {pyrubikabotapi-0.0.1 → pyrubikabotapi-1.0.0}/README.md +0 -0
- {pyrubikabotapi-0.0.1 → pyrubikabotapi-1.0.0}/pyproject.toml +0 -0
- {pyrubikabotapi-0.0.1 → pyrubikabotapi-1.0.0}/setup.cfg +0 -0
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PyRubikaBotAPI
|
|
3
|
-
Version: 0.0
|
|
4
|
-
Summary: A Python library
|
|
5
|
-
Home-page: https://github.com/alireza-sadeghian/
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A Python library with a simple and familiar interface for working with the official Rubika bot API
|
|
5
|
+
Home-page: https://github.com/alireza-sadeghian/PyRubikaBotAPI
|
|
6
6
|
Author: Alireza Sadeghian
|
|
7
7
|
Author-email: alireza.amid110@gmail.com
|
|
8
8
|
License: MIT
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
11
|
Classifier: Operating System :: OS Independent
|
|
12
|
-
Requires-Python: >=3.
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENCE
|
|
15
15
|
Requires-Dist: requests
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: PyRubikaBotAPI
|
|
3
|
-
Version: 0.0
|
|
4
|
-
Summary: A Python library
|
|
5
|
-
Home-page: https://github.com/alireza-sadeghian/
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A Python library with a simple and familiar interface for working with the official Rubika bot API
|
|
5
|
+
Home-page: https://github.com/alireza-sadeghian/PyRubikaBotAPI
|
|
6
6
|
Author: Alireza Sadeghian
|
|
7
7
|
Author-email: alireza.amid110@gmail.com
|
|
8
8
|
License: MIT
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
10
|
Classifier: License :: OSI Approved :: MIT License
|
|
11
11
|
Classifier: Operating System :: OS Independent
|
|
12
|
-
Requires-Python: >=3.
|
|
12
|
+
Requires-Python: >=3.8
|
|
13
13
|
Description-Content-Type: text/markdown
|
|
14
14
|
License-File: LICENCE
|
|
15
15
|
Requires-Dist: requests
|
|
@@ -8,5 +8,9 @@ PyRubikaBotAPI.egg-info/dependency_links.txt
|
|
|
8
8
|
PyRubikaBotAPI.egg-info/requires.txt
|
|
9
9
|
PyRubikaBotAPI.egg-info/top_level.txt
|
|
10
10
|
rubibot/__init__.py
|
|
11
|
-
rubibot/
|
|
12
|
-
rubibot/
|
|
11
|
+
rubibot/exceptions.py
|
|
12
|
+
rubibot/metadata.py
|
|
13
|
+
rubibot/parse.py
|
|
14
|
+
rubibot/rubika_api.py
|
|
15
|
+
rubibot/types.py
|
|
16
|
+
rubibot/updates.py
|