Metadata-Version: 2.4
Name: a9s
Version: 0.7.0
Summary: Cli tool for navigation in Amazon AWS services. Highly inspired from k9s
Home-page: https://github.com/IamShobe/a9s
Author: Elran Shefer
Author-email: elran777@gmail.com
Requires-Python: >=3.9,<4.0
Requires-Dist: attrdict<3.0.0,>=2.0.1
Requires-Dist: blessed<2.0.0,>=1.18.0
Requires-Dist: boto3<2.0.0,>=1.17.87
Requires-Dist: cached-property<2.0.0,>=1.5.2
Requires-Dist: colored<2.0.0,>=1.4.2
Requires-Dist: pydash<6.0.0,>=5.0.2
Requires-Dist: pyperclip<2.0.0,>=1.8.2
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# a9s

![](https://img.shields.io/github/v/release/IamShobe/a9s) ![](https://img.shields.io/github/workflow/status/IamShobe/a9s/Create%20and%20publish%20a%20Python%20package?label=pypi%20build) ![](https://img.shields.io/github/workflow/status/IamShobe/a9s/Create%20and%20publish%20a%20Docker%20image?label=docker%20build)  
Cli tool for easily navigating in AWS services.  
Highly inspired from [k9s](https://github.com/derailed/k9s). 


## How to install

```shell
pip install a9s
```

### Docker build

```shell
docker build . -t a9s
docker run -v ~/.aws/:/root/.aws -it --rm a9s
```

### Running docker from cloud

```shell
docker run -v ~/.aws/:/root/.aws -it --rm ghcr.io/iamshobe/a9s
```


### How to develop

#### Running mock server
Install poetry env:
```bash
poetry install
```
Start dev server:
```bash
poetry run moto_server -p 54321
```
Run mock data:
```bash
poetry run python -m mocked_env.main
```

#### Running mock server with docker-compose
```bash
docker-compose -f mocked_env/docker-compose.yaml up --build
```

#### Running a9s in with mocked server
Run a9s in local mode (connects to mock server on port 54321):
```bash
LOCAL=true poetry run a9s
```

## Goals

### Services
- [X] s3 support
- [X] route53 support
- [ ] EC2 support
- [ ] ELB support
- [ ] Cloudfront support


### Features
- [X] responsive tables
- [X] allow to easily switch between services
- [X] auto-complete commands
- [X] vim shortcuts support
- [X] opening files in S3
- [X] quick yank
- [ ] smart navigation between services - route53 pointing to ELB etc..
