Set of libraries commonly used by multiple SRE projects:
container.Image: class for container image inspection.container.Skopeo: wrapper around Skopeo.utils.replace_values: deep replace of object values according to values map.utils.retry: decorator to add resilience to function calls.
From PyPI:
pip install sretoolboxFrom source:
python setup.py installJust import the library you want. Example:
>>> from sretoolbox import container
>>> image = container.Image('fedora')
>>> if image:
... print('Image exists!')
...
Image exists!
>>>Install the development requirements:
make developRun the code checks and tests:
make checkBump the version number in pyproject.toml. Submit a pull
request to master. When it is merged, a Konflux job will publish the package on pypi.
The default license of the code in this repository is http://www.apache.org/licenses/LICENSE-2.0. That applies for most of the code here, as they were written from scratch, but exceptions exist. In any case, each module carries the corresponding licensing information.