termgraph
termgraph copied to clipboard
a python command-line tool which draws basic graphs in the terminal
Hi, thanks a ton for this nifty package ! It'd be useful if we could overwrite the individual bar labels. ```bash echo "Label,3,9,1" | termgraph --custom-tick "😀" --no-label --row-values {three,...
When printing this chart without categories, there are three blank lines above the actual chart. This doesn't look good and is simply unnecessary: ```py from termgraph.module import Data, BarChart, Args,...
I fix "no_values" arg, that was missed, and add "no_new_lines" arg, for situation, when you want to print values by yourself
## Problem Description When piping output to head, the program exits with `BrokenPipeError`. ## Proposed solution The python docs explain how to handle this situation, and it is quite an...