Metadata-Version: 2.4
Name: qubership-pipelines-common-library
Version: 2.0.5
Summary: Qubership Pipelines common library
License: Apache-2.0
License-File: LICENSE
Author: Qubership
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: GitPython (>=3.1.43,<4.0.0)
Requires-Dist: boto3 (>=1.39.4,<2.0.0)
Requires-Dist: click (>=8.1.7,<9.0.0)
Requires-Dist: ghapi (>=1.0.6,<2.0.0)
Requires-Dist: google-cloud-artifact-registry (>=1.16.1,<2.0.0)
Requires-Dist: google-cloud-secret-manager (>=2.26.0,<3.0.0)
Requires-Dist: http-exceptions (>=0.2.10,<0.3.0)
Requires-Dist: hvac (>=2.4.0,<3.0.0)
Requires-Dist: kubernetes (>=34.1.0,<35.0.0)
Requires-Dist: minio (>=7.2.12,<8.0.0)
Requires-Dist: python-gitlab (>=4.13.0,<6.0.0)
Requires-Dist: python-jenkins (>=1.8.2,<2.0.0)
Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
Requires-Dist: requests (>=2.32.3,<3.0.0)
Requires-Dist: urllib3 (>=2.2.3,<3.0.0)
Requires-Dist: webexpythonsdk (==2.0.1)
Description-Content-Type: text/markdown

[![PyPI](https://img.shields.io/pypi/v/qubership-pipelines-common-library)](https://pypi.org/project/qubership-pipelines-common-library/)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/qubership-pipelines-common-library)
![Build](https://github.com/Netcracker/qubership-pipelines-common-python-library/actions/workflows/python-publish.yml/badge.svg)
![Repo Size](https://img.shields.io/github/repo-size/Netcracker/qubership-pipelines-common-python-library)

# Qubership Pipelines Common Library

Open-source python library of clients used by Qubership pipelines/modules.

Library provides easy-to-use clients and wrappers for common DevOps services (e.g. Jenkins, MiniO, GitLab Pipelines)

## Sample implementation

Sample implementation of CLI commands using this library is available at [qubership-pipelines-cli-command-samples](https://github.com/Netcracker/qubership-pipelines-cli-command-samples)

It includes reference python implementation along with the [Development Guide](https://github.com/Netcracker/qubership-pipelines-cli-command-samples/blob/main/docs/development.md)

## Structure

Library is presented as a set of clients with predefined operations

Auto-generated reference (via mkdocs) is available on [this repo's GitHub Pages](https://netcracker.github.io/qubership-pipelines-common-python-library/mkdocs)

## Installation

- Add the following section to your dependencies to add Qubership library as a dependency in your project:

  ```toml
  [tool.poetry.dependencies]
  qubership-pipelines-common-library = "*"
  ```

- Or you can install it via `pip`:

  ```bash
  pip install qubership-pipelines-common-library
  ```

## Backported version

There also exists backported to python3.9 version of this library

You can install it via `pip`:

```bash
pip install qubership-pipelines-common-library-py39
```

