Metadata-Version: 2.1
Name: stail
Version: 0.1.2
Summary: Step Function tailing CLI tool
Home-page: https://github.com/imankamyabi/stail
License: MIT
Keywords: step-function,aws,cli,tail
Author: Iman Kamyabi
Author-email: contact@imankamyabi.com
Requires-Python: >=3.7,<4.0
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: boto3 (>=1.11.14,<2.0.0)
Requires-Dist: click (>=7.0,<8.0)
Requires-Dist: colorama (>=0.4.3,<0.5.0)
Requires-Dist: pyfiglet (>=0.8.post1,<0.9)
Project-URL: Repository, https://github.com/imankamyabi/stail
Description-Content-Type: text/markdown

# STail
CLI Tool to run and tail a step function synchronously.

Tail feature coming soon!

## Installation:
```bash
pip install stail
```

## Usage

### run
Runs a step function synchronously.
```bash
stail run --arn [state machine arn] --input [input]
```
####Options:
  --help  Show this message and exit.

##### Example:
```bash
stail run --arn arn:aws:states:<region>:955883056721:stateMachine:<name> --input "{\"param\":\"hello\"}"
```

### version
Displays the version.
```bash
stail version
```

Author: Iman Kamyabi
Feedback: contact@imankamyabi.com
