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 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
+ ]