textgraph

Library for creating text based graphs


Keywords
text, graph, textgraph, asciigraph
License
GPL-3.0+
Install
pip install textgraph==2.0.0

Documentation

TextGraph

Build Status codecov

Python library for generating simple text graphs.

Based on code by Rory McCann

asciicast

Install

pip install textgraph

Usage

import textgraph

data = [12, 5, 2, 7]

print(textgraph.spark(data))

See more examples in examples.py