download = """ \b \b\bExamples: # Download all available episodes # multiple titles can be specified with -t option fastanime download -t -t # -- or -- fastanime download -t -t -r ':' \b # download latest episode for the two anime titles # the number can be any no of latest episodes but a minus sign # must be present fastanime download -t -t -r '-1' \b # latest 5 fastanime download -t -t -r '-5' \b # Download specific episode range # be sure to observe the range Syntax fastanime download -t -r '::' \b fastanime download -t -r ':' \b fastanime download -t -r ':' \b fastanime download -t -r ':' \b # download specific episode # remember python indexing starts at 0 fastanime download -t -r ':' \b # merge subtitles with ffmpeg to mkv format; hianime tends to give subs as separate files # and dont prompt for anything # eg existing file in destination instead remove # and clean # ie remove original files (sub file and vid file) # only keep merged files fastanime download -t --merge --clean --no-prompt \b # EOF is used since -t always expects a title # you can supply anime titles from file or -t at the same time # from stdin echo -e "\\n\\n" | fastanime download -t "EOF" -r -f - \b # from file fastanime download -t "EOF" -r -f """ search = """ \b \b\bExamples: # basic form where you will still be prompted for the episode number # multiple titles can be specified with the -t option fastanime search -t -t \b # binge all episodes with this command fastanime search -t -r ':' \b # watch latest episode fastanime search -t -r '-1' \b # binge a specific episode range with this command # be sure to observe the range Syntax fastanime search -t -r ':' \b fastanime search -t -r '::' \b fastanime search -t -r ':' \b fastanime search -t -r ':' """