Metadata-Version: 1.1
Name: spikes
Version: 0.1.1b0
Summary: A command line tool to display bar-chart.
Home-page: https://github.com/eendroroy/spikes
Author: Indrajit Roy
Author-email: eendroroy@gmail.com
License: MIT
Description: # spikes
        
        [![Join the chat at https://gitter.im/eendroroy/spikes](https://badges.gitter.im/eendroroy/spikes.svg)](https://gitter.im/eendroroy/spikes?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
        [![PyPI version](https://badge.fury.io/py/spikes.svg)](https://badge.fury.io/py/spikes)
        [![Build Status](https://travis-ci.org/eendroroy/spikes.svg?branch=master)](https://travis-ci.org/eendroroy/spikes)
        [![Code Climate](https://codeclimate.com/github/eendroroy/spikes/badges/gpa.svg)](https://codeclimate.com/github/eendroroy/spikes)
        [![codecov](https://codecov.io/gh/eendroroy/spikes/branch/master/graph/badge.svg)](https://codecov.io/gh/eendroroy/spikes)
        
        A tool to display bar-chart anywhere.
        
        ## installation
        use pip
        
            $ pip install spikes
        
        ## usage
        
            $ spike 2 4 3 7 2 9
            ▂▄▃▆▂█
        
            $ spike .1 .5 .9 2.5
            ▁▂▃█
        
        use more than 1 line to display the chart
        
            $ spike -l 3   2 4 3 7 2 9
               ▃ █
             ▃ █ █
            ▅███▅█
        
        read from stdin
        
            $ spike
            > 2 4 3 7 2 9
            > # press Ctrl-D
            ▂▄▃▆▂█
        
        ## use with git
        commit count per day:
            
            $ git log | grep Date | awk '{print " : "$4" "$3" "$6}' | uniq -c | awk '{print $1}' | spike
            
            ▁▄▅▁▁▂▁▁▂▄▄▇▃█▁▁▁▁▁▁▁
        
        commit count per author
            
            $ git log | grep Author | awk '{print $NF}' | sort | uniq -c | awk '{print $1}' | spike -l4
            
            █
            █
            █  ▁
            █▅▁█▅▂▆▄█
        
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
