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.
- Host: GitHub
- URL: https://github.com/qba73/abako
- Owner: qba73
- License: mit
- Created: 2017-07-24T21:08:48.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-26T22:27:10.000Z (almost 9 years ago)
- Last Synced: 2025-09-01T03:48:58.732Z (9 months ago)
- Topics: aws, aws-cli-utilities, boto3, python, python-library
- Language: Python
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```