updated README

This commit is contained in:
SexbearLmao
2021-03-30 00:58:26 -05:00
parent f7e2d0845a
commit 889463f6a7
2 changed files with 12 additions and 3 deletions

View File

@@ -133,10 +133,10 @@ def main(cli_args):
parser = ArgumentParser()
parser.add_argument('-o', '--output', help='output file name', type=str)
parser.add_argument('-t', '--title', help='ebook title', type=str)
parser.add_argument('-a', '--author', help='ebook author', type=str)
parser.add_argument('-a', '--author', help="DOESN'T WORK ebook author", type=str)
parser.add_argument('-g', '--tag', help='apply a tag', action='append')
parser.add_argument('-I', '--images', help='also attempt to download any images', action='store_true')
parser.add_argument('-C', '--auto-cover', help='generate an automatic cover', action='store_true', dest='cover')
parser.add_argument('-I', '--images', help='NOT IMPLEMENTED also attempt to download any images', action='store_true')
parser.add_argument('-C', '--auto-cover', help='NOT IMPLEMENTED generate an automatic cover', action='store_true', dest='cover')
parser.add_argument('-T', '--no-trim', help="don't try to trim footer at bottom of chapters", action='store_false', dest='trim')
parser.add_argument('url', help='url to download', nargs='+')
#args = parser.parse_args(cli_args)