ColorScript is a scripting language for designing custom ASCII banners.
- Support for most common ASCII symbols including special ones.
- Covenient syntax, all colors marked with
%. (%red,%blue,%end, etc.) - Supports parsing files as well as just a line.
pip3 install git+https://github.com/EntySec/ColorScriptfrom colorscript import ColorScript
cs = ColorScript()
text = """
Roses are %redred%end
Violets are %blueblue%end
Sugar is %whitesweet%end
And so are %greenyou%end
"""
print(cs.parse(text))