An open API service indexing awesome lists of open source software.

https://github.com/qba73/abako

A simple Python cli tool for checking active AWS resources.
https://github.com/qba73/abako

aws aws-cli-utilities boto3 python python-library

Last synced: about 1 month ago
JSON representation

A simple Python cli tool for checking active AWS resources.

Awesome Lists containing this project

README

          

# ABAKO
A simple tool for checking your active AWS resources.

## Installation for development and testing
Create Python virtualenv
```bash
$ virtualenv venv-abako
$ source venv-abako/bin/activate
```
Install abako for local development
```bash
$ pip install --editable .
```

## Using Abako
Show current options:
```bash
$ abako --help
usage: abako [OPTIONS] COMMAND [ARGS]...

Options:
--help Show this message and exit.

Commands:
dynamo show DynamoDB tables.
ec2 show EC2 instances.
ecr show ECR repositories.
elb show Elastic Load Balancers.
rds show RDS instances.
```

Show DynamoDB tables:
```bash
$ abako dynamo
```

Show provisoned EC2 instances:
```bash
$ abako ec2
```

Show RDS databases:
```bash
$ abako rds
```

Show ECR (Docker) repositories:
```bash
$ abako ecr
```

Show Elastic Load Balancers:
```bash
$ abako elb
```

## Makefile
Create wheel and sdist:
```bash
$ make sdist
```

Cleanup environment
```bash
$ make clean
```

Run tests:
```bash
$ make test
```