Metadata-Version: 2.1
Name: ssmp
Version: 0.0.2
Summary: CLI tool for AWS SSM parameter
Home-page: https://github.com/yikaus/ssmp
Author: Kevin Yi
Author-email: yikaus@gmail.com
License: MIT License
Requires-Dist: click
Requires-Dist: boto3
Requires-Dist: pandas

Description: # AWS SSM parameter helper cli I created for myself
        
        ### Install
        
        `pip3 install ssmp`
        ### Usage
        
        `ssmp --help`
        
        ### Example
        
        list all parameters only under the path , no recursive.
        
        ```
        $ ssmp ls /
        Name    Type    Value  Version LastModifiedDate
        test  String  test111        1   19/12/12 21:09
        test2  String  test222        1   19/12/16 20:31
        $ ssmp ls /test
        Name    Type    Value  Version LastModifiedDate
        /test/abc  String  test111        1   19/12/12 21:11
        /test/cde  String     test        1   19/12/16 20:32
        ```
        
        Search key under the path recursive or no recursive
        
        ```
        $ ssmp grep ab /
        Not found
        $ ssmp grep -r ab /
        Name    Type    Value  Version LastModifiedDate
        /test/abc  String  test111        1   19/12/12 21:11
        $ ssmp grep abc /test
        Name    Type    Value  Version LastModifiedDate
        /test/abc  String  test111        1   19/12/12 21:11
        ```
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
