Metadata-Version: 2.1
Name: kines
Version: 0.0.7
Summary: Friendly Command Line Interface for Amazon Kinesis Data Streams
Home-page: https://github.com/dinsaw/kines
Author: Dinesh Sawant
Author-email: dineshsawant300@gmail.com
License: UNKNOWN
Description: ## Kines
        Friendly Command Line Interface for [Amazon Kinesis Data Streams](https://aws.amazon.com/kinesis/data-streams/)
        
        ![Kines Demo](demo/kines-demo.gif)
        
        #### Install
        - `pip install kines`
        
        #### Setup 
        - `aws configure`
        
        #### Commands 
        ##### List all Kinesis Stream
        - `kines ls`
        
        ![Kines ls](demo/kines-ls.png)
        
        ##### List Kinesis Stream Shards
        - `kines lss <stream-name>`
        - For detailed output Run `kines lss <stream-name> -d`
        
        ![Kines lss](demo/kines-lss-and-d.png)
        
        ##### Find shard for partition key
        - `kines find prod-clickstream -p 123455 -p 8900`
        
        ![Kines find](demo/kines-find.png)
        
        #### Get report for your Kinesis Stream
        - `kines report <stream-name> -h <number-of-hours> -p <metric-period-in-minutes>`
        
        - Get report for last 3 hours with 10 minute metric period
        
        ![Kines Report](demo/kines-report.png)
        
        - Get report for last 60 hours with 6 hour metric period
        
        ![Kines Report 60 hours 6 hours](demo/kines-report-h-60-p-60.png)
        
        #### View all short forms and legends
        - `kines legends`
        
        ![Kines Legends](demo/kines-legends.png)
        
        #### How to build in Dev?
        - `pip install --editable .`
        
        #### How to publish to pypi?
        - `python3 setup.py sdist bdist_wheel`
        - `twine upload --skip-existing dist/*`
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
