1
0
Fork 0
mirror of synced 2024-06-02 02:25:20 +12:00
ArchiveBox/archivebox/cli/archivebox_help.py

32 lines
759 B
Python
Raw Normal View History

#!/usr/bin/env python3
__package__ = 'archivebox.cli'
__command__ = 'archivebox help'
import sys
import argparse
2019-04-28 09:26:24 +12:00
from typing import Optional, List, IO
from ..main import help, docstring
2019-04-28 09:26:24 +12:00
from ..config import OUTPUT_DIR
from ..logging_util import SmartFormatter, reject_stdin
@docstring(help.__doc__)
2019-04-28 09:26:24 +12:00
def main(args: Optional[List[str]]=None, stdin: Optional[IO]=None, pwd: Optional[str]=None) -> None:
parser = argparse.ArgumentParser(
prog=__command__,
description=help.__doc__,
add_help=True,
formatter_class=SmartFormatter,
)
2019-04-28 09:26:24 +12:00
parser.parse_args(args or ())
reject_stdin(__command__, stdin)
2019-04-28 09:26:24 +12:00
help(out_dir=pwd or OUTPUT_DIR)
if __name__ == '__main__':
2019-04-28 09:26:24 +12:00
main(args=sys.argv[1:], stdin=sys.stdin)