pydiagral 1.1.0__tar.gz → 1.2.0__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {pydiagral-1.1.0 → pydiagral-1.2.0}/.github/workflows/release_and_doc.yaml +1 -1
- {pydiagral-1.1.0 → pydiagral-1.2.0}/CHANGELOG.md +7 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/PKG-INFO +1 -1
- {pydiagral-1.1.0 → pydiagral-1.2.0}/src/pydiagral/api.py +1 -4
- {pydiagral-1.1.0 → pydiagral-1.2.0}/.devcontainer/Dockerfile.dev +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/.devcontainer/devcontainer.json +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/.github/FUNDING.yml +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/.github/dependabot.yml +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/.github/labels.yml +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/.github/workflows/labeler.yml +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/.github/workflows/lint.yaml +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/.github/workflows/lock.yml +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/.github/workflows/pytest.yaml +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/.github/workflows/semantic-prs.yml +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/.gitignore +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/.releaserc +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/.vscode/extensions.json +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/.vscode/settings.json +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/LICENSE +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/README.md +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/docs/api.md +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/docs/exceptions.md +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/docs/how-to-find-diagral-serial.png +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/docs/index.md +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/docs/models.md +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/docs/pydiagral-Logo.png +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/example_code.py +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/mkdocs.yml +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/pyproject.toml +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/src/pydiagral/__init__.py +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/src/pydiagral/constants.py +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/src/pydiagral/exceptions.py +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/src/pydiagral/models.py +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/src/pydiagral/utils.py +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/test.txt +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/tests/__init__.py +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/tests/data/configuration_sample.json +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/tests/data/system_details_sample.json +0 -0
- {pydiagral-1.1.0 → pydiagral-1.2.0}/tests/test_pydiagral_api.py +0 -0
@@ -1,3 +1,10 @@
|
|
1
|
+
# [1.2.0](https://github.com/mguyard/pydiagral/compare/v1.1.0...v1.2.0) (2025-02-22)
|
2
|
+
|
3
|
+
|
4
|
+
### Features
|
5
|
+
|
6
|
+
* test1 ([e7bf5e6](https://github.com/mguyard/pydiagral/commit/e7bf5e6a4a72121a98e413541a0699d195190612))
|
7
|
+
|
1
8
|
# [1.1.0](https://github.com/mguyard/pydiagral/compare/v1.0.0...v1.1.0) (2025-02-22)
|
2
9
|
|
3
10
|
|
@@ -134,7 +134,7 @@ class DiagralAPI:
|
|
134
134
|
method (str): The HTTP method to use for the request (e.g., 'GET', 'POST').
|
135
135
|
endpoint (str): The API endpoint to send the request to.
|
136
136
|
timeout (float, optional): The timeout for the request in seconds. Defaults to 30.
|
137
|
-
**kwargs: Additional keyword arguments to pass to the request.
|
137
|
+
**kwargs (any): Additional keyword arguments to pass to the request.
|
138
138
|
|
139
139
|
Returns:
|
140
140
|
tuple[dict[str, Any], int]: A tuple containing:
|
@@ -589,7 +589,6 @@ class DiagralAPI:
|
|
589
589
|
Raises:
|
590
590
|
ConfigurationError: If the action is not one of the allowed actions.
|
591
591
|
AuthenticationError: If the API key, secret key, or PIN code is missing.
|
592
|
-
All other exceptions from _request function are propagated.
|
593
592
|
|
594
593
|
"""
|
595
594
|
|
@@ -714,7 +713,6 @@ class DiagralAPI:
|
|
714
713
|
Raises:
|
715
714
|
ConfigurationError: If the action is not 'activate_group' or 'disable_group', or if the groups are invalid.
|
716
715
|
AuthenticationError: If the API key, secret key, or PIN code is not provided.
|
717
|
-
All other exceptions from _request function are propagated.
|
718
716
|
|
719
717
|
"""
|
720
718
|
|
@@ -834,7 +832,6 @@ class DiagralAPI:
|
|
834
832
|
Raises:
|
835
833
|
ConfigurationError: If the action is not 'enable' or 'disable', or if the product type is invalid.
|
836
834
|
AuthenticationError: If the API key, secret key, or PIN code is not provided.
|
837
|
-
All other exceptions from _request function are propagated.
|
838
835
|
|
839
836
|
"""
|
840
837
|
|
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
|
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
|
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
|
File without changes
|
File without changes
|