clisparkline: Tiny library to pretty print sparklines onto the CLI

This is a package candidate release! Here you can preview how this package release will appear once published to the main package index (which can be accomplished via the 'maintain' link below). Please note that once a package has been published to the main package index it cannot be undone! Please consult the package uploading documentation for more information.

[maintain] [Publish]

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]

Properties

Versions 0.1.0.0, 0.1.0.0
Change log None available
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:31Z

Modules

[Index] [Quick Jump]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees


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
_▂▅█▅▂