aas-http-client 0.1.9__tar.gz → 0.1.91__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.
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/PKG-INFO +5 -3
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/README.md +4 -2
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/aas_http_client.egg-info/PKG-INFO +5 -3
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/pyproject.toml +1 -1
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/LICENSE +0 -0
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/aas_http_client/__init__.py +0 -0
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/aas_http_client/client.py +0 -0
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/aas_http_client/core/encoder.py +0 -0
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/aas_http_client/core/version_check.py +0 -0
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/aas_http_client/demo/demo_process.py +0 -0
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/aas_http_client/demo/logging_handler.py +0 -0
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/aas_http_client/utilities/__init__.py +0 -0
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/aas_http_client/utilities/model_builder.py +0 -0
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/aas_http_client/wrapper/sdk_wrapper.py +0 -0
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/aas_http_client.egg-info/SOURCES.txt +0 -0
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/aas_http_client.egg-info/dependency_links.txt +0 -0
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/aas_http_client.egg-info/top_level.txt +0 -0
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/setup.cfg +0 -0
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/tests/test_client_dotnet_server.py +0 -0
- {aas_http_client-0.1.9 → aas_http_client-0.1.91}/tests/test_client_java_server.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aas-http-client
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.91
|
|
4
4
|
Summary: Generic HTTP client for communicating 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
|
|
@@ -127,8 +127,8 @@ Dynamic: license-file
|
|
|
127
127
|
[](https://github.com/fluid40/aas-http-client/actions)
|
|
128
128
|
[](https://pypi.org/project/aas-http-client/)
|
|
129
129
|
|
|
130
|
-
|
|
131
|
-
|
|
130
|
+
This is a generic HTTP client that can communicate with various types of AAS and submodel repository servers. The client uses Python dictionaries for input and output parameters.
|
|
131
|
+
Additionally, wrappers are provided that work with various AAS frameworks and use the HTTP client as middleware.
|
|
132
132
|
|
|
133
133
|
Currently, wrappers are available for the following frameworks:
|
|
134
134
|
- BaSyx Python SDK
|
|
@@ -149,6 +149,8 @@ Currently, wrappers are available for the following frameworks:
|
|
|
149
149
|
|
|
150
150
|
## ⚡ Quickstart
|
|
151
151
|
|
|
152
|
+
For a detailed introduction, please read [Getting Started](docs/getting_started.md).
|
|
153
|
+
|
|
152
154
|
```bash
|
|
153
155
|
pip install aas-http-client
|
|
154
156
|
````
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
[](https://github.com/fluid40/aas-http-client/actions)
|
|
16
16
|
[](https://pypi.org/project/aas-http-client/)
|
|
17
17
|
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
This is a generic HTTP client that can communicate with various types of AAS and submodel repository servers. The client uses Python dictionaries for input and output parameters.
|
|
19
|
+
Additionally, wrappers are provided that work with various AAS frameworks and use the HTTP client as middleware.
|
|
20
20
|
|
|
21
21
|
Currently, wrappers are available for the following frameworks:
|
|
22
22
|
- BaSyx Python SDK
|
|
@@ -37,6 +37,8 @@ Currently, wrappers are available for the following frameworks:
|
|
|
37
37
|
|
|
38
38
|
## ⚡ Quickstart
|
|
39
39
|
|
|
40
|
+
For a detailed introduction, please read [Getting Started](docs/getting_started.md).
|
|
41
|
+
|
|
40
42
|
```bash
|
|
41
43
|
pip install aas-http-client
|
|
42
44
|
````
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: aas-http-client
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.91
|
|
4
4
|
Summary: Generic HTTP client for communicating 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
|
|
@@ -127,8 +127,8 @@ Dynamic: license-file
|
|
|
127
127
|
[](https://github.com/fluid40/aas-http-client/actions)
|
|
128
128
|
[](https://pypi.org/project/aas-http-client/)
|
|
129
129
|
|
|
130
|
-
|
|
131
|
-
|
|
130
|
+
This is a generic HTTP client that can communicate with various types of AAS and submodel repository servers. The client uses Python dictionaries for input and output parameters.
|
|
131
|
+
Additionally, wrappers are provided that work with various AAS frameworks and use the HTTP client as middleware.
|
|
132
132
|
|
|
133
133
|
Currently, wrappers are available for the following frameworks:
|
|
134
134
|
- BaSyx Python SDK
|
|
@@ -149,6 +149,8 @@ Currently, wrappers are available for the following frameworks:
|
|
|
149
149
|
|
|
150
150
|
## ⚡ Quickstart
|
|
151
151
|
|
|
152
|
+
For a detailed introduction, please read [Getting Started](docs/getting_started.md).
|
|
153
|
+
|
|
152
154
|
```bash
|
|
153
155
|
pip install aas-http-client
|
|
154
156
|
````
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "aas-http-client"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.91"
|
|
8
8
|
description = "Generic HTTP client for communicating with various types of AAS servers"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = { file = "LICENSE" }
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{aas_http_client-0.1.9 → aas_http_client-0.1.91}/aas_http_client.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|