basic back-end progress api for the data analytics software framework dasf
Project description
Progress API for the Data Analytics Software Framework (DASF)
DASF: Progress API
is part of the Data Analytics Software Framework (DASF, https://codebase.helmholtz.cloud/dasf),
developed at the GFZ German Research Centre for Geosciences (https://www.gfz-potsdam.de).
It is funded by the Initiative and Networking Fund of the Helmholtz Association through the Digital Earth project
(https://www.digitalearth-hgf.de/).
DASF: Progress API
provides a light-weight tree-based structure to be sent via the DASF RCP messaging protocol.
It's generic design supports deterministic as well as non-deterministic progress reports.
While DASF: Messaging Python
provides the necessary implementation to distribute
the progress reports from the reporting backend modules,
DASF: Web
includes ready to use components to visualize the reported progress.
Installation
Install this package in a dedicated python environment via
python -m venv venv
source venv/bin/activate
pip install deprogessapi
To use this in a development setup, clone the source code from gitlab, start the development server and make your changes::
git clone https://codebase.helmholtz.cloud/dasf/dasf-progress-api
cd dasf-progress-api
python -m venv venv
source venv/bin/activate
make dev-install
More detailed installation instructions my be found in the docs.
Service Desk
For everyone without a Geomar Gitlab account, we setup the Service Desk feature for this repository. It lets you communicate with the developers via a repository specific eMail address. Each request will be tracked via the Gitlab issuse tracker.
eMail: gitlab+digital-earth-dasf-dasf-progress-api-2274-issue-@git-issues.geomar.de
Usage
A progress report is stored in a tree structure. So there will be one 'root' report instance containing multiple 'sub-reports'.
In order to report the progress simply add a reporter argument with type ProgressReport
to the exposed method, e.g.
from deprogressapi import ProgressReport
def some_exposed_method(reporter: Optional[ProgressReport] = ProgressReport(
step_message="some progress message")) -> str:
# ...
For a report instance new subreports can be created via the create_subreport
method.
Each created report is published (sent to the requesting client) automatically upon creation and on completion.
# create a subreport
sub_report = root_report.create_subreport(step_message="Calculating something")
# execute some logic
# ...
# mark the sub-report as compelte
sub_report.complete()
All sub-reports are again instances of ProgressReport
, so you can create more sub-reports for each.
error handling
In order to report an error, you provide an error status argument to the complete
method. The corresponding error message can be set via the reports step_message
field.
from deprogressapi.base import Status
# ...
# some code that raises an exception
# ...
except Exception as e:
error = str(e)
progress_report.step_message = "error '{msg}': {err}".format(msg=progress_report.step_message, err=error)
progress_report.complete(Status.ERROR)
Recommended Software Citation
Eggert, Daniel; Dransch, Doris (2021): DASF: Progress API: A progress reporting structure for the data analytics software framework. V. v0.1.4. GFZ Data Services. https://doi.org/10.5880/GFZ.1.4.2021.007
Technical note
This package has been generated from the template https://codebase.helmholtz.cloud/hcdc/software-templates/python-package-template.git.
See the template repository for instructions on how to update the skeleton for this package.
License information
Copyright © 2020-2024 Helmholtz Centre Potsdam GFZ German Research Centre for Geosciences
Code files in this repository are licensed under the Apache-2.0, if not stated otherwise in the file.
Documentation files in this repository are licensed under CC-BY-4.0, if not stated otherwise in the file.
Supplementary and configuration files in this repository are licensed under CC0-1.0, if not stated otherwise in the file.
Please check the header of the individual files for more detailed information.
License management
License management is handled with reuse
.
If you have any questions on this, please have a look into the
contributing guide or contact the maintainers of
dasf-progress-api
.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file deprogressapi-0.4.2.tar.gz
.
File metadata
- Download URL: deprogressapi-0.4.2.tar.gz
- Upload date:
- Size: 23.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63631432d1a8b15f2a27966fa7e6ae7cfa370f680eecd6126d65800b4897212d |
|
MD5 | 46e3f529be98ac27aa64e6cdcd944ac5 |
|
BLAKE2b-256 | 2db2f4588963d3bdf7343feca80326dfbdc63ff22f2de8908d9b5a892a8c49a2 |
File details
Details for the file deprogressapi-0.4.2-py3-none-any.whl
.
File metadata
- Download URL: deprogressapi-0.4.2-py3-none-any.whl
- Upload date:
- Size: 24.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7fa56f33950d011fe1095d71a08663f4f941154c24c8c3693c22f1c4d5b23db7 |
|
MD5 | 30fe84a3cd63aa076830da33829c4bbc |
|
BLAKE2b-256 | 85f2f189782b493acfcfebb14556a457ca48ea6cf6bb2a320f09bc86a865aaed |