ArchiveBox/archivebox/cli/archivebox_help.py

33 lines
835 B
Python
Raw Normal View History

#!/usr/bin/env python3
__package__ = 'archivebox.cli'
__command__ = 'archivebox help'
import sys
import argparse
2024-09-30 17:44:18 -07:00
from pathlib import Path
2019-04-27 17:26:24 -04:00
from typing import Optional, List, IO
2024-09-30 17:25:15 -07:00
from archivebox.misc.util import docstring
2024-09-30 17:44:18 -07:00
from archivebox.config import DATA_DIR
from ..main import help
from ..logging_util import SmartFormatter, reject_stdin
@docstring(help.__doc__)
2019-04-27 17:26:24 -04: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-27 17:26:24 -04:00
parser.parse_args(args or ())
reject_stdin(__command__, stdin)
2024-09-30 17:44:18 -07:00
help(out_dir=Path(pwd) if pwd else DATA_DIR)
if __name__ == '__main__':
2019-04-27 17:26:24 -04:00
main(args=sys.argv[1:], stdin=sys.stdin)