Metadata-Version: 2.1
Name: slapr
Version: 1.2
Summary: A simple tool that allows you to change your default AWS CLI profile.
Home-page: https://github.com/antonipy/slapr
Author: Antoni Yanev
Author-email: antonipyanev@gmail.com
License: gpl-3.0
Download-URL: https://github.com/antonipy/slapr/archive/refs/tags/1.2.tar.gz
Keywords: aws,awscli,awscliv2,linux,tools
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Select AWS Profile

Select AWS Profile (slapr) is a simple tool that lets you select which AWS Profile you want to use and sets it as the default AWS profile, so that you can easily use your favorite AWS CLI commands.

## Installation

```bash
pip install slapr
```

## Usage

> **WARNING**: If you already have configured a default aws cli profile, please rename it otherwise the tool will overwrite it.

![use_slapr.gif](https://raw.githubusercontent.com/antonipy/slapr/main/media/use_slapr.gif)

## Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

### How to test

- Setup virtual environment and install requirements

```bash
virtualenv env
source env/bin/activate
pip install -r requirements.txt
```

- Once you are ready with your changes and  you want to test them locally, install the tool in editable mode

```bash
pip install --editable .
```

## License

This project is under The GNU General Public License v3.0

