pydiagral 1.0.0__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- pydiagral/__init__.py +28 -0
- pydiagral/api.py +1249 -0
- pydiagral/constants.py +4 -0
- pydiagral/exceptions.py +39 -0
- pydiagral/models.py +1498 -0
- pydiagral/utils.py +14 -0
- pydiagral-1.0.0.dist-info/METADATA +828 -0
- pydiagral-1.0.0.dist-info/RECORD +10 -0
- pydiagral-1.0.0.dist-info/WHEEL +4 -0
- pydiagral-1.0.0.dist-info/licenses/LICENSE +674 -0
pydiagral/__init__.py
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
"""Diagral API package initialization.
|
2
|
+
|
3
|
+
This package provides the necessary components to interact with the Diagral API.
|
4
|
+
"""
|
5
|
+
|
6
|
+
from .api import DiagralAPI
|
7
|
+
from .exceptions import (
|
8
|
+
AuthenticationError,
|
9
|
+
ClientError,
|
10
|
+
ConfigurationError,
|
11
|
+
DiagralAPIError,
|
12
|
+
ServerError,
|
13
|
+
SessionError,
|
14
|
+
ValidationError,
|
15
|
+
)
|
16
|
+
from .models import ApiKeyWithSecret
|
17
|
+
|
18
|
+
__all__ = [
|
19
|
+
"DiagralAPI",
|
20
|
+
"DiagralAPIError",
|
21
|
+
"AuthenticationError",
|
22
|
+
"ConfigurationError",
|
23
|
+
"ValidationError",
|
24
|
+
"SessionError",
|
25
|
+
"ServerError",
|
26
|
+
"ApiKeyWithSecret",
|
27
|
+
"ClientError",
|
28
|
+
]
|