cloudnet-api-client 0.9.1__tar.gz → 0.9.2__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.
- {cloudnet_api_client-0.9.1 → cloudnet_api_client-0.9.2}/CHANGELOG.md +4 -0
- {cloudnet_api_client-0.9.1 → cloudnet_api_client-0.9.2}/PKG-INFO +1 -1
- {cloudnet_api_client-0.9.1 → cloudnet_api_client-0.9.2}/cloudnet_api_client/client.py +1 -1
- cloudnet_api_client-0.9.2/cloudnet_api_client/version.py +1 -0
- cloudnet_api_client-0.9.1/cloudnet_api_client/version.py +0 -1
- {cloudnet_api_client-0.9.1 → cloudnet_api_client-0.9.2}/.github/workflows/publish.yml +0 -0
- {cloudnet_api_client-0.9.1 → cloudnet_api_client-0.9.2}/.github/workflows/test.yml +0 -0
- {cloudnet_api_client-0.9.1 → cloudnet_api_client-0.9.2}/.gitignore +0 -0
- {cloudnet_api_client-0.9.1 → cloudnet_api_client-0.9.2}/.pre-commit-config.yaml +0 -0
- {cloudnet_api_client-0.9.1 → cloudnet_api_client-0.9.2}/LICENSE +0 -0
- {cloudnet_api_client-0.9.1 → cloudnet_api_client-0.9.2}/README.md +0 -0
- {cloudnet_api_client-0.9.1 → cloudnet_api_client-0.9.2}/cloudnet_api_client/__init__.py +0 -0
- {cloudnet_api_client-0.9.1 → cloudnet_api_client-0.9.2}/cloudnet_api_client/containers.py +0 -0
- {cloudnet_api_client-0.9.1 → cloudnet_api_client-0.9.2}/cloudnet_api_client/dl.py +0 -0
- {cloudnet_api_client-0.9.1 → cloudnet_api_client-0.9.2}/cloudnet_api_client/py.typed +0 -0
- {cloudnet_api_client-0.9.1 → cloudnet_api_client-0.9.2}/cloudnet_api_client/utils.py +0 -0
- {cloudnet_api_client-0.9.1 → cloudnet_api_client-0.9.2}/pyproject.toml +0 -0
|
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## 0.9.2 – 2025-08-04
|
|
9
|
+
|
|
10
|
+
- Use updated Cloudnet API
|
|
11
|
+
|
|
8
12
|
## 0.9.1 – 2025-06-19
|
|
9
13
|
|
|
10
14
|
- Support mobile sites without latitude and longitude
|
|
@@ -432,7 +432,7 @@ def _build_raw_meta_objects(res: list[dict]) -> list[RawMetadata]:
|
|
|
432
432
|
return [
|
|
433
433
|
RawMetadata(
|
|
434
434
|
**{_to_snake(k): v for k, v in obj.items() if _to_snake(k) in field_names},
|
|
435
|
-
instrument=_create_instrument_object(obj["
|
|
435
|
+
instrument=_create_instrument_object(obj["instrument"]),
|
|
436
436
|
measurement_date=datetime.date.fromisoformat(obj["measurementDate"]),
|
|
437
437
|
created_at=_parse_datetime(obj["createdAt"]),
|
|
438
438
|
updated_at=_parse_datetime(obj["updatedAt"]),
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.9.2"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.9.1"
|
|
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
|