aas-http-client 0.3.9__py3-none-any.whl → 0.4.0__py3-none-any.whl
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.
Potentially problematic release.
This version of aas-http-client might be problematic. Click here for more details.
- aas_http_client/__init__.py +16 -7
- {aas_http_client-0.3.9.dist-info → aas_http_client-0.4.0.dist-info}/METADATA +1 -1
- {aas_http_client-0.3.9.dist-info → aas_http_client-0.4.0.dist-info}/RECORD +6 -6
- {aas_http_client-0.3.9.dist-info → aas_http_client-0.4.0.dist-info}/WHEEL +0 -0
- {aas_http_client-0.3.9.dist-info → aas_http_client-0.4.0.dist-info}/licenses/LICENSE +0 -0
- {aas_http_client-0.3.9.dist-info → aas_http_client-0.4.0.dist-info}/top_level.txt +0 -0
aas_http_client/__init__.py
CHANGED
|
@@ -1,22 +1,31 @@
|
|
|
1
|
-
from datetime import datetime
|
|
2
1
|
import importlib.metadata
|
|
2
|
+
from datetime import datetime, timezone
|
|
3
3
|
|
|
4
|
-
__copyright__ = f"Copyright (C) {datetime.now().year} :em engineering methods AG. All rights reserved."
|
|
4
|
+
__copyright__ = f"Copyright (C) {datetime.now(tz=timezone.utc).year} :em engineering methods AG. All rights reserved."
|
|
5
5
|
__author__ = "Daniel Klein"
|
|
6
6
|
|
|
7
7
|
try:
|
|
8
8
|
__version__ = importlib.metadata.version(__name__)
|
|
9
9
|
except importlib.metadata.PackageNotFoundError:
|
|
10
10
|
__version__ = "0.0.0-dev"
|
|
11
|
-
|
|
11
|
+
|
|
12
12
|
__project__ = "aas-http-client"
|
|
13
13
|
__package__ = "aas-http-client"
|
|
14
14
|
|
|
15
|
+
from aas_http_client.client import AasHttpClient, create_client_by_config, create_client_by_url
|
|
15
16
|
from aas_http_client.core.version_check import check_for_update
|
|
16
|
-
from aas_http_client.
|
|
17
|
-
from aas_http_client.
|
|
18
|
-
from aas_http_client.wrapper.sdk_wrapper import create_wrapper_by_config, create_wrapper_by_url, SdkWrapper
|
|
17
|
+
from aas_http_client.utilities import model_builder, sdk_tools
|
|
18
|
+
from aas_http_client.wrapper.sdk_wrapper import SdkWrapper, create_wrapper_by_config, create_wrapper_by_url
|
|
19
19
|
|
|
20
20
|
check_for_update()
|
|
21
21
|
|
|
22
|
-
__all__ = [
|
|
22
|
+
__all__ = [
|
|
23
|
+
"create_client_by_config",
|
|
24
|
+
"create_client_by_url",
|
|
25
|
+
"AasHttpClient",
|
|
26
|
+
"model_builder",
|
|
27
|
+
"create_wrapper_by_config",
|
|
28
|
+
"create_wrapper_by_url",
|
|
29
|
+
"SdkWrapper",
|
|
30
|
+
"sdk_tools",
|
|
31
|
+
]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aas-http-client
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0
|
|
4
4
|
Summary: Generic python HTTP client for communication with various types of AAS servers
|
|
5
5
|
Author-email: Daniel Klein <daniel.klein@em.ag>
|
|
6
6
|
License: # :em engineering methods AG Software License
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
aas_http_client/__init__.py,sha256=
|
|
1
|
+
aas_http_client/__init__.py,sha256=bBfrdXUHvukisXIj0CcnNUHUw8_7nrdnfQRve8nM_3U,982
|
|
2
2
|
aas_http_client/client.py,sha256=CtX1nlIo65-Um9AlXZ3gOfEMJwcLDJNOssxkGXAlsg0,27205
|
|
3
3
|
aas_http_client/core/encoder.py,sha256=FS7P0FPakzFsGz70eRFDHQZFA_2nlKLlWIxavtnFrPg,660
|
|
4
4
|
aas_http_client/core/version_check.py,sha256=9dR0Q6jCFygH_ctj4vyrjerpHvolT87ayengZFlBWCw,708
|
|
@@ -7,8 +7,8 @@ aas_http_client/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
|
7
7
|
aas_http_client/utilities/model_builder.py,sha256=6pZ0mcfofkuCu24wp71vhBKyaLXJcHpU8N4PBHx_Xpo,3782
|
|
8
8
|
aas_http_client/utilities/sdk_tools.py,sha256=QPpItZdhw8y13IgpS015vTAb8e8QfPeidUuE6-K0JIo,1637
|
|
9
9
|
aas_http_client/wrapper/sdk_wrapper.py,sha256=67RiQ5qAgFq84817QurGX-GJBsM3QI3k4-uBC7sOQio,14807
|
|
10
|
-
aas_http_client-0.
|
|
11
|
-
aas_http_client-0.
|
|
12
|
-
aas_http_client-0.
|
|
13
|
-
aas_http_client-0.
|
|
14
|
-
aas_http_client-0.
|
|
10
|
+
aas_http_client-0.4.0.dist-info/licenses/LICENSE,sha256=ayt4HY-Tjoe1Uvj47j6UdNq8mEufKcKFangurChIHxQ,5990
|
|
11
|
+
aas_http_client-0.4.0.dist-info/METADATA,sha256=o5uysJOtlvq_E-ALEMnnw0oEAbfHXYqGOhT2xpRKmVc,10467
|
|
12
|
+
aas_http_client-0.4.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
13
|
+
aas_http_client-0.4.0.dist-info/top_level.txt,sha256=vzvoz2vjeTLwpuz-Y-eEfoQ7T3byoaKshVlFMFH5NaM,16
|
|
14
|
+
aas_http_client-0.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|