Metadata-Version: 2.1
Name: avtomat-aws
Version: 0.2.1
Summary: A collection of reusable Amazon Web Services actions, bringing speed and certainty to cloud operations.
Home-page: https://avtomat.io
License: GPL-2.0-only
Keywords: aws,cloud,automation,cli,python,boto3
Author: Dimitar Atanasov
Author-email: dimitar@avtomat.io
Requires-Python: >=3.9,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
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,<2.0)
Project-URL: Bug Tracker, https://github.com/avtomat-hub/avtomat-aws/issues
Project-URL: Documentation, https://docs.avtomat.io/aws/get_started
Project-URL: GitHub, https://github.com/avtomat-hub/avtomat-aws
Description-Content-Type: text/markdown

<div align="center">
  <center>
    <a href="https://github.com/avtomat-hub/avtomat-aws">
      <img width="350" alt="Avtomat logo" src="logo.svg" />
    </a>
  </center>
</div>
<div align="center" style="margin-top: -30px">
  <center><h1 align="center">Automate Cloud Operations, AWS Collection<i></i></h1></center>
  <center><h4>Maintained by <a style="color: #2d547d;" href="https://avtomat.io" target="_blank">Avtomat</a></h4><i></i></center>
</div>

<div align="center">

[![homepage](https://img.shields.io/website?url=https%3A%2F%2Favtomat.io&style=flat-square)](https://avtomat.io)
[![documentation](https://img.shields.io/badge/documentation-yes-brightgreen.svg?style=flat-square)](https://docs.avtomat.io/aws/get_started)
[![contributing](https://img.shields.io/badge/contributing-guide-blue?style=flat-square)](/docs/CONTRIBUTING.md)
<br/>
[![version](https://img.shields.io/pypi/v/avtomat-aws?style=flat-square&label=version&color=blue)](https://github.com/avtomat-hub/avtomat-aws)
[![build](https://img.shields.io/github/actions/workflow/status/avtomat-hub/avtomat-aws/publish-to-pypi.yml?style=flat-square)](https://github.com/avtomat-hub/avtomat-aws/actions/workflows/publish-to-pypi.yml)
[![status](https://img.shields.io/pypi/status/avtomat-aws?style=flat-square)](https://pypi.org/p/avtomat-aws)
[![downloads](https://img.shields.io/pypi/dm/avtomat-aws?style=flat-square)](https://pypi.org/project/avtomat-aws/)
[![python](https://img.shields.io/pypi/pyversions/avtomat-aws?style=flat-square)](https://pypi.org/p/avtomat-aws)
[![license](https://img.shields.io/github/license/avtomat-hub/avtomat-aws?style=flat-square)](https://github.com/avtomat-hub/avtomat-aws/blob/main/LICENSE)

</div>

> </br><h4 align="center">**A collection of reusable Amazon Web Services actions, bringing speed and certainty to cloud operations. </br> 
> Written in Python. Built on top of Boto3.**</h4></br>

## Table of Contents

- [Overview](#overview)
- [Installation](#installation)
  - [PyPi](#pypi)
- [Requirements](#requirements)
- [Contributing](#contributing)
- [License](#license)

## Overview

This repository features a collection of pre-written AWS scripts (called actions), designed to streamline daily operations - from information gathering to infrastructure changes. </br> 
Actions are written in Python and can be used as standalone scripts, chained together to form workflows or incorporated into your own projects. </br> 
The collection has a CLI interface, providing easy access to each action. </br> </br>
For a list of available actions or usage instructions, see the [documentation](https://docs.avtomat.io/aws/get_started).

## Installation

Currently, this collection can only be installed from PyPi.

### PyPi

If you already have Python3 and pip3 installed, you can perform:

#### Virtual Environment Installation (pip)

```shell 
python3 -m venv venv
source venv/bin/activate
pip install avtomat-aws
aaws --help
```

#### Global Installation (recommended: pipx)

```shell
pipx install avtomat-aws
aaws --help
```

## Requirements

This collection only requires [Python3](https://www.python.org/) and [Boto3](https://boto3.amazonaws.com/v1/documentation/api/latest/index.html). </br>
AWS configuration files (`~/.aws/credentials` and `~/.aws/config`) are optional but highly recommended for falling back to Boto3 authentication flow.

## Contributing

Contributions, issues, and feature requests are welcome! Feel free to check the [issues page](https://github.com/avtomat-hub/avtomat-aws/issues). <br>If you are interested in contributing or would like to make some modifications, please take a look at the [contributing guide](/docs/CONTRIBUTING.md).

## License

Copyright © 2024 [Avtomat Ltd](https://avtomat.io). This project is [GPLv2](https://github.com/avtomat-hub/avtomat-aws/blob/main/LICENSE) licensed.
