A command-line app using the Safebooru + Danbooru API to display anime fanart in your terminal.
Download show-waifu-1.0.1.tar.gz
from releases and extract it using
either a GUI or the command line.
If you're using the command line run
tar -xf show-waifu-1.0.1.tar.gz
Move the show-waifu
executable into your bin
# If ~/bin doesn't exist, create it using the following
mkdir -p ~/bin
mv show-waifu ~/bin
Test it to see if it works, it should output an image in your terminal
~/bin/show-waifu
To make show-waifu
available everywhere on the command line,
add ~/bin/
to $PATH and reload the Bash configuration
echo 'export PATH=~/bin:$PATH' >> ~/.bash_profile
source ~/.bash_profile
Test it again, this time without ~/bin/
. If it works, you're all set to use it!
show-waifu
Using Rust's package manager, Cargo, all you have to do is run
cargo install show-waifu
If you're not a Rust programmer, install Rust to use Cargo
Safebooru | Danbooru | |
---|---|---|
Safe for work | Fairly safe | Not really safe |
Searching |
|
|
Image details |
|
|
More details can be found below
Searching: Safebooru's cheatsheet | Danbooru's cheatsheet
Image ratings: Safebooru's image ratings | Danbooru's image ratings
For Anonymous and Member-level users, authentication provides no benefits.
Normally, using the dan
subcommand limits searches to up to 2 tags. You can bypass
this by authenticating with a Gold-level Danbooru account or above.
Gold and Platinum cost money, $20 and $40 respectively, but contributions to the community also award higher levels. See Danbooru help:users for more information.
You can authenticate by doing the following:
-
Go to your user profile and generate an API key by clicking the "Generate API key" button
-
Create 2 environmental variables named
DANBOORU_USERNAME
andDANBOORU_API_KEY
, then add them to~/.bashrc
echo 'export DANBOORU_USERNAME="your-name-here"' >> ~/.bashrc echo 'export DANBOORU_API_KEY="api-key-here"' >> ~/.bashrc
-
Add this snippet to ~/.bash_profile
echo "if [ -f ~/.bashrc ]; then . ~/.bashrc fi" >> ~/.bash_profile
-
Reload the Bash configuration
source ~/.bash_profile
-
Check environmental variables for your API key and username. After that, make a search with more than 2 tags to verify its functional
# Both environmental variables should pop-up printenv | grep -E '(DANBOORU_USERNAME|DANBOORU_API_KEY)' # Search with more than 2 tags show-waifu dan --safe --tags="when_the_imposter_is_sus_(meme) jerma985 cat_boy cat_paws cat_ears chartags:1"
Grab a random image from the first page of Safebooru
show-waifu
Read from stdin and show an image
curl -s https://pbs.twimg.com/media/DoWo3unU4AA2etL\?format\=jpg\&name\=large | show-waifu
Search for a specific image on Safebooru based on tags, and print details
show-waifu safe --details --tags="ncr_veteran_ranger night~"
Change a local file's height for viewing
show-waifu --height 10 file ~/Pictures/doge.jpg
USAGE:
show-waifu [OPTIONS] [SUBCOMMAND]
FLAGS:
--help Prints help information
-V, --version Prints version information
OPTIONS:
-h, --height <height> Resize the image to a provided height
-w, --width <width> Resize the image to a provided width
SUBCOMMANDS:
dan Look at random images from Danbooru
file View an image from your file system
help Prints this message or the help of the given subcommand(s)
safe Look at random images from Safebooru
url View an image from a url
USAGE:
show-waifu dan [FLAGS] [OPTIONS]
FLAGS:
-d, --details Show data related to image (artist, source, character, url, rating,
dimensions, tags)
-e, --explicit Only display images with explicit sexual content
-h, --help Prints help information
-q, --questionable Only display images with some nox-explicit nudity or sexual content
-s, --safe Only display images lacking sexual content. Includes lingerie, swimsuits,
innocent romance, etc. NOTE: this doesn't mean "safe for work."
-V, --version Prints version information
OPTIONS:
-k, --key <key> Pass your Danbooru API key for authentication. NOTE: This doesn't
set a persistent environmental variable and instead only works for
one session
-t, --tags <tags> Search for an image based on Danbooru tags. Pass as a string
separated by spaces or commas. Look at Danbooru's cheatsheet for a
full list of search options
-u, --username <username> Pass your Danbooru username for authentication. NOTE: This doesn't
set a persistent environmental variable and instead only works for
one session
USAGE:
show-waifu safe [FLAGS] [OPTIONS]
FLAGS:
-d, --details Show data related to image (url, rating, dimensions, tags)
-h, --help Prints help information
-q, --questionable Only display images with suggestive content
-V, --version Prints version information
OPTIONS:
-t, --tags <tags> Search for an image based on Safebooru tags. Pass as a string separated by
spaces or commas. Look at Safebooru's cheatsheet for a full list of search
options