# ColorScript **Repository Path**: rankyangel/ColorScript ## Basic Information - **Project Name**: ColorScript - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-15 - **Last Updated**: 2023-11-15 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ColorScript
ColorScript is a scripting language for designing custom ASCII banners. ## Features * 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. ## Installation ```shell pip3 install git+https://github.com/EntySec/ColorScript ``` ## Examples ```python from 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)) ```