aas-http-client 0.3.9__tar.gz → 0.4.0__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.

Potentially problematic release.


This version of aas-http-client might be problematic. Click here for more details.

Files changed (22) hide show
  1. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/PKG-INFO +1 -1
  2. aas_http_client-0.4.0/aas_http_client/__init__.py +31 -0
  3. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/aas_http_client.egg-info/PKG-INFO +1 -1
  4. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/pyproject.toml +1 -1
  5. aas_http_client-0.3.9/aas_http_client/__init__.py +0 -22
  6. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/LICENSE +0 -0
  7. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/README.md +0 -0
  8. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/aas_http_client/client.py +0 -0
  9. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/aas_http_client/core/encoder.py +0 -0
  10. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/aas_http_client/core/version_check.py +0 -0
  11. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/aas_http_client/demo/demo_process.py +0 -0
  12. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/aas_http_client/utilities/__init__.py +0 -0
  13. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/aas_http_client/utilities/model_builder.py +0 -0
  14. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/aas_http_client/utilities/sdk_tools.py +0 -0
  15. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/aas_http_client/wrapper/sdk_wrapper.py +0 -0
  16. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/aas_http_client.egg-info/SOURCES.txt +0 -0
  17. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/aas_http_client.egg-info/dependency_links.txt +0 -0
  18. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/aas_http_client.egg-info/requires.txt +0 -0
  19. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/aas_http_client.egg-info/top_level.txt +0 -0
  20. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/setup.cfg +0 -0
  21. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/tests/test_client.py +0 -0
  22. {aas_http_client-0.3.9 → aas_http_client-0.4.0}/tests/test_wrapper.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aas-http-client
3
- Version: 0.3.9
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
@@ -0,0 +1,31 @@
1
+ import importlib.metadata
2
+ from datetime import datetime, timezone
3
+
4
+ __copyright__ = f"Copyright (C) {datetime.now(tz=timezone.utc).year} :em engineering methods AG. All rights reserved."
5
+ __author__ = "Daniel Klein"
6
+
7
+ try:
8
+ __version__ = importlib.metadata.version(__name__)
9
+ except importlib.metadata.PackageNotFoundError:
10
+ __version__ = "0.0.0-dev"
11
+
12
+ __project__ = "aas-http-client"
13
+ __package__ = "aas-http-client"
14
+
15
+ from aas_http_client.client import AasHttpClient, create_client_by_config, create_client_by_url
16
+ from aas_http_client.core.version_check import check_for_update
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
+
20
+ check_for_update()
21
+
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.9
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
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "aas-http-client"
7
- version = "0.3.9"
7
+ version = "0.4.0"
8
8
  description = "Generic python HTTP client for communication with various types of AAS servers"
9
9
  readme = "README.md"
10
10
  license = { file = "LICENSE" }
@@ -1,22 +0,0 @@
1
- from datetime import datetime
2
- import importlib.metadata
3
-
4
- __copyright__ = f"Copyright (C) {datetime.now().year} :em engineering methods AG. All rights reserved."
5
- __author__ = "Daniel Klein"
6
-
7
- try:
8
- __version__ = importlib.metadata.version(__name__)
9
- except importlib.metadata.PackageNotFoundError:
10
- __version__ = "0.0.0-dev"
11
-
12
- __project__ = "aas-http-client"
13
- __package__ = "aas-http-client"
14
-
15
- from aas_http_client.core.version_check import check_for_update
16
- from aas_http_client.client import create_client_by_config, create_client_by_url, AasHttpClient
17
- from aas_http_client.utilities import model_builder
18
- from aas_http_client.wrapper.sdk_wrapper import create_wrapper_by_config, create_wrapper_by_url, SdkWrapper
19
-
20
- check_for_update()
21
-
22
- __all__ = ["create_client_by_config", "create_client_by_url", "AasHttpClient", "model_builder", "create_wrapper_by_config", "create_wrapper_by_url", "SdkWrapper"]
File without changes