marzban 0.2.4__tar.gz → 0.2.6__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: marzban
3
- Version: 0.2.4
3
+ Version: 0.2.6
4
4
  Summary: Асинхронная библиотека Python для взаимодействия с MarzbanAPI
5
5
  Home-page: https://github.com/sm1ky/marzban_api
6
6
  Author: Artem
@@ -0,0 +1,62 @@
1
+ from .api import MarzbanAPI
2
+ from .models import (
3
+ Admin,
4
+ AdminCreate,
5
+ AdminModify,
6
+ UserCreate,
7
+ UserModify,
8
+ UserResponse,
9
+ UsersResponse,
10
+ UserStatus,
11
+ UserTemplateCreate,
12
+ UserTemplateModify,
13
+ UserTemplateResponse,
14
+ UserUsageResponse,
15
+ UserUsagesResponse,
16
+ NodeUsageResponse,
17
+ NodesUsageResponse,
18
+ NodeCreate,
19
+ NodeModify,
20
+ NodeResponse,
21
+ SystemStats,
22
+ CoreStats,
23
+ ProxySettings,
24
+ ProxyHost,
25
+ ProxyInbound,
26
+ Token,
27
+ HTTPValidationError,
28
+ ValidationError
29
+ )
30
+
31
+ __all__ = (
32
+ "__version__",
33
+ "MarzbanAPI",
34
+ "Admin",
35
+ "AdminCreate",
36
+ "AdminModify",
37
+ "UserCreate",
38
+ "UserModify",
39
+ "UserResponse",
40
+ "UsersResponse",
41
+ "UserStatus",
42
+ "UserTemplateCreate",
43
+ "UserTemplateModify",
44
+ "UserTemplateResponse",
45
+ "UserUsageResponse",
46
+ "UserUsagesResponse",
47
+ "NodeUsageResponse",
48
+ "NodesUsageResponse",
49
+ "NodeCreate",
50
+ "NodeModify",
51
+ "NodeResponse",
52
+ "SystemStats",
53
+ "CoreStats",
54
+ "ProxySettings",
55
+ "ProxyHost",
56
+ "ProxyInbound",
57
+ "Token",
58
+ "HTTPValidationError",
59
+ "ValidationError",
60
+ )
61
+
62
+ __version__ = "0.2.6"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: marzban
3
- Version: 0.2.4
3
+ Version: 0.2.6
4
4
  Summary: Асинхронная библиотека Python для взаимодействия с MarzbanAPI
5
5
  Home-page: https://github.com/sm1ky/marzban_api
6
6
  Author: Artem
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
5
5
 
6
6
  setup(
7
7
  name="marzban",
8
- version="0.2.4",
8
+ version="0.2.6",
9
9
  packages=find_packages(),
10
10
  install_requires=[
11
11
  "httpx>=0.23.0",
@@ -1,4 +0,0 @@
1
- from .api import MarzbanAPI
2
- from .models import *
3
-
4
- __version__ = "0.2.4"
File without changes
File without changes
File without changes
File without changes
File without changes