From eeb51ce51095f3e0f8cec17de3e5a98a772a271f Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Thu, 30 May 2024 11:44:00 -0700 Subject: [PATCH] Update README to show example of ANSI vs SVG output Signed-off-by: Alek Ratzloff --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b6ae795..3f3974d 100644 --- a/README.md +++ b/README.md @@ -11,17 +11,17 @@ No dependencies required, everything is vanilla Python >=3.10. ## Example usage -### Create art using the default "nibble" art algorithm +### Create art using the default "nibble" art algorithm, printing out to the terminal -`python -m colorhash infile.dat -o out.svg` +`python -m colorhash infile.dat` -### Create art using the OpenSSH "randomart" art algorithm +### Create art using the OpenSSH "randomart" art algorithm, writing to an SVG file -`python -m colorhash infile.dat -o out.svg -m randomart` +`python -m colorhash infile.dat -y svg -o out.svg -m randomart` ### Create art using an MD5 hash instead of the default SHA512 -`python -m colorhash infile.dat -o out.svg -a md5` +`python -m colorhash infile.dat -y svg -o out.svg -a md5` # Motivation