Deal with figlet easily. Basically a wrapper.
This guide is written for Windows users.
-
Click here to download the source code in the master branch of this github repository.
-
Extract it and cd into it
-
Install dependencies
python -m pip install -r requirements.txt
- Run the script
python easy-figlet.py
>python easy-figlet.py --help
usage: easy-figlet.py [-h] [--font FONT] [--list] [-r] [-u] [-l] [-s [SAVE]] [text]
Generate ASCII art with pyfiglet.
positional arguments:
text Text to convert to ASCII art
options:
-h, --help show this help message and exit
--font FONT Font to use for the ASCII art
--list List all available fonts
-r, --random Print text with a random font
-u, --uppercase Convert text to uppercase
-l, --lowercase Convert text to lowercase
-s [SAVE], --save [SAVE]
Save the result to a file
python easy-figlet.py --help
python easy-figlet.py "hirusha"
python easy-figlet.py "hirusha" --font standard
python easy-figlet.py "hirusha" --random
python easy-figlet.py "hirusha" -u
python easy-figlet.py "hirusha" -l
python easy-figlet.py "hirusha" -s
python easy-figlet.py "hirusha" -s "file.txt"