Python-3xui 0.0.12__tar.gz → 0.0.13.post2__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.
Files changed (25) hide show
  1. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/PKG-INFO +3 -1
  2. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/pyproject.toml +4 -2
  3. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/python_3xui/__init__.py +1 -1
  4. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/.gitignore +0 -0
  5. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/LICENSE +0 -0
  6. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/README.md +0 -0
  7. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/python_3xui/api.py +0 -0
  8. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/python_3xui/api_core/__init__.py +0 -0
  9. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/python_3xui/api_core/client_service.py +0 -0
  10. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/python_3xui/api_core/identity.py +0 -0
  11. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/python_3xui/api_core/prod_cache.py +0 -0
  12. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/python_3xui/api_core/session_core.py +0 -0
  13. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/python_3xui/base_model.py +0 -0
  14. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/python_3xui/custom_exceptions.py +0 -0
  15. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/python_3xui/endpoints.py +0 -0
  16. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/python_3xui/models.py +0 -0
  17. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/python_3xui/util.py +0 -0
  18. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/tests/conftest.py +0 -0
  19. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/tests/gather_response_stubs.py +0 -0
  20. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/tests/pytest.ini +0 -0
  21. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/tests/test_endpoints_clients.py +0 -0
  22. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/tests/test_endpoints_inbounds.py +0 -0
  23. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/tests/test_non_idempotent_endpoints_clients.py +0 -0
  24. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/tests/test_non_idempotent_endpoints_inbounds.py +0 -0
  25. {python_3xui-0.0.12 → python_3xui-0.0.13.post2}/tests/test_xuiclient_helpers.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Python-3xui
3
- Version: 0.0.12
3
+ Version: 0.0.13.post2
4
4
  Summary: 3x-ui wrapper for python
5
5
  Project-URL: Homepage, https://github.com/Artem-Potapov/3x-py
6
6
  Project-URL: Issues, https://github.com/Artem-Potapov/3x-py/issues
@@ -13,7 +13,9 @@ Classifier: Operating System :: OS Independent
13
13
  Classifier: Programming Language :: Python :: 3
14
14
  Requires-Python: >=3.12
15
15
  Requires-Dist: async-lru~=2.3.0
16
+ Requires-Dist: cachetools~=7.1.1
16
17
  Requires-Dist: httpx~=0.28.1
18
+ Requires-Dist: pybase62~=1.0.0
17
19
  Requires-Dist: pydantic<3,~=2.12.5
18
20
  Requires-Dist: pyotp~=2.9.0
19
21
  Requires-Dist: python-dotenv==1.2.2
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "Python-3xui"
3
- version = "0.0.12"
3
+ version = "0.0.13r2"
4
4
  authors = [
5
5
  { name="JustMe_001", email="justme001.causation755@passinbox.com" },
6
6
  ]
@@ -24,7 +24,9 @@ dependencies = [
24
24
  "httpx ~=0.28.1",
25
25
  "python-dotenv==1.2.2",
26
26
  "async_lru ~= 2.3.0",
27
- "pyotp ~= 2.9.0"
27
+ "pyotp ~= 2.9.0",
28
+ "cachetools ~= 7.1.1",
29
+ "pybase62 ~= 1.0.0"
28
30
  ]
29
31
 
30
32
 
@@ -4,7 +4,7 @@ from .api import XUIClient
4
4
  import python_3xui.custom_exceptions as exceptions
5
5
 
6
6
  __author__ = "JustMe_001"
7
- __version__ = "0.0.12"
7
+ __version__ = "0.0.13"
8
8
  __email__ = ""
9
9
 
10
10
 
File without changes