Metadata-Version: 2.1
Name: kypo-aws-lib
Version: 0.3.7
Summary: KYPO AWS Driver Python lib
License: MIT
Author: Juraj Paluba
Author-email: 492988@mail.muni.cz
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: boto3 (>=1.34.63,<2.0.0)
Requires-Dist: jinja2 (>=3.1.3,<4.0.0)
Requires-Dist: kypo-python-commons (>=0.1.13,<0.2.0)
Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
Description-Content-Type: text/markdown

# kypo-aws-lib

Python library that serves as AWS driver for the sandbox-service (the Django microservice).
It is meant to be an installable component, not stand-alone library.

It implements the
[KypoCloudClientBase](https://gitlab.ics.muni.cz/muni-kypo-crp/backend-python/kypo-python-commons/-/blob/master/kypo/cloud_commons/cloud_client_base.py?ref_type=heads)
interface. The interface allows seemless integration to the KYPO CRP environment.

## Communication with AWS API
The library utilizes Boto3 library for communication with AWS API. Boto3 implements multiple clients,
each serving its own AWS Service.

## Contents
This library contains:
 * **kypo/aws_driver** -- the implementation of the library
 * **pyproject.toml** -- metadata of the library

## Releasing a new version
The release of a new version consists of two steps:
 1. Update the version of package in the pyproject.toml file. Note that upload of the package will fail
 if the registry already contains the package with given name and version.
 2. Create a suitable commit that must include `[release]` in the commit message. For example:

 ```text
feat: implement my new special feature

<body of the commit> ... and updating version in pyproject.toml
[release]
```

