Metadata-Version: 2.1
Name: o7cli
Version: 0.1.320
Summary: Useful CLI and scripts for O7 Conseils DevOps practice
Author: Philippe Gosselin
Author-email: phil@o7conseils.com
License: LICENSE
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: boto3 >=1.18
Requires-Dist: pandas >=2.0
Requires-Dist: requests >=1.18
Requires-Dist: sty >=1.0.0-rc.2
Requires-Dist: certifi >=2021.11.17

# O7 CLI
A useful tool for O7 Conseils AWS DevOps activities.
This is developed as we need it in our projects. It shared to allow others to use it.

## Installation
Run the following to install:
```bash
pip install o7cli
```
## Usage

```bash
# Help
o7

# See all AWS pipeline in us-east-1
o7 -r us-east-1 pl

# See all AWS Cloudwatch logs for profile ab in us-west2
o7 -p ab -r us-west-2 log
```

## Options & Module
```
o7 [options] <module>
Useful CLI and scripts for O7 Conseils DevOps practice
version: <VERSION>
Options:
    -p <profile> : Set AWS Profile
    -r <region>  : Set AWS Region
    -d           : Set DEBUG Traces
    -v           : Version Number
Available Modules:
    report: Multiple Reports
    cost: Analyse AWS Sccount Cost
    log: Cloudwatch Logs
    cm: Cloud Map

    s3: S3 (Simple Scalable Storage)
    ec2: Elastic Computing
    ecs: Elastic Container Service
    lf: Lambda Funcition
    rds: Relational DB
    asg: Auto Scaling Group

    cfn: Cloudformation
    pl: Code Pipeline
    cb: Code Build
    cc: Code Commit
```
