download = """ \b \b\bExamples: # Download all available episodes # multiple titles can be specified with -t option viu download -t -t # -- or -- viu 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 viu download -t -t -r '-1' \b # latest 5 viu download -t -t -r '-5' \b # Download specific episode range # be sure to observe the range Syntax viu download -t -r '::' \b viu download -t -r ':' \b viu download -t -r ':' \b viu download -t -r ':' \b # download specific episode # remember python indexing starts at 0 viu 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 viu 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" | viu download -t "EOF" -r -f - \b # from file viu 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 viu search -t -t \b # binge all episodes with this command viu search -t -r ':' \b # watch latest episode viu search -t -r '-1' \b # binge a specific episode range with this command # be sure to observe the range Syntax viu search -t -r ':' \b viu search -t -r '::' \b viu search -t -r ':' \b viu search -t -r ':' """