clisparkline: Tiny library to pretty print sparklines onto the CLI

[ graphics, library, mit ] [ Propose Tags ]

Print sparklines into the CLI. Example usage: > import System.Console.Sparkline > main = putStrLn . series2spark $ [0, 1, 2, 3, 2, 1] output is: > _▂▅█▅▂


[Skip to Readme]

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0
Dependencies base (>=4.12 && <4.13) [details]
License MIT
Author Siddharth Bhat
Maintainer siddu.druid@gmail.com
Category Graphics
Source repo head: git clone https://github.com/bollu/clisparkline.git
Uploaded by bollu at 2019-05-26T20:51:45Z
Distributions
Downloads 598 total (4 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2019-05-26 [all 1 reports]

Readme for clisparkline-0.1.0.0

[back to package description]

clisparkline

Sparklines are tiny charts to visually present data, like so: _▁▂▃▄▅▆▇█

clisparklines is a tiny haskell library to print sparklines on the CLI.

Example program
import System.Console.Sparkline
main = putStrLn . series2spark $ [0, 1, 2, 3, 2, 1]
Output
_▂▅█▅▂