-
-
Save tazjel/1614653 to your computer and use it in GitHub Desktop.
Command line sparks in Python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# coding=utf-8 | |
# Python version of Zach Holman's "spark" | |
# https://github.com/holman/spark | |
# by Stefan van der Walt <[email protected]> | |
""" | |
USAGE: | |
sparks.py [comma,separated,value,list] or [vals separated by spaces] | |
EXAMPLES: | |
spark 1,5,22,13,53 | |
▁▁▃▂▇ | |
spark 0 30 55 80 33 150 | |
▁▂▃▅▂▇ | |
spark 0.1 0.2 0.9 -0.5 | |
▄▅█▁ | |
""" | |
import sys | |
import numpy as np | |
if len(sys.argv) < 2: | |
print __doc__ | |
sys.exit(-1) | |
sparks = np.fromstring('▁▂▃▄▅▆▇█', dtype='S3') | |
values = np.array([float(v) for v in ' '.join(sys.argv[1:]).replace(',', ' ').split()]) | |
if np.unique(values).size != 1: | |
values -= values.min() | |
m = values.max() or 1 | |
values /= m | |
print sparks[np.round(values * (sparks.size - 1)).astype(int)].tostring() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment